gpt4 book ai didi

php - 是否需要包含来自 gomoob :php-pushwooshto to run a PHP program to send push notifications to iPhone? 的任何文件

转载 作者:行者123 更新时间:2023-12-02 15:25:37 24 4
gpt4 key购买 nike

我想通过编写 PHP 代码向 iPhone 设备发送推送通知。

gomoob:php-pushwoosh 是一个 PHP 库,可以轻松地与 pushwoosh REST Web 服务配合使用。

This is the URL for gomoob:php-pushwoosh

按照说明,我在本地计算机上使用 Composer 安装了 gomoob:php-pushwoosh,位置为 '/var/www/gomoob-php -pushwoosh'

我在名为 sample_1.php 的文件中编写了以下代码,该文件位于 '/var/www/gomoob-php-pushwoosh/sample_1.php'

<?php

ini_set('display_startup_errors',1);
ini_set('display_errors',1);
error_reporting(-1);

require __DIR__.'/vendor/autoload.php';


// Create a Pushwoosh client
$pushwoosh = Pushwoosh::create()
->setApplication('XXXX-XXX')
->setAuth('xxxxxxxx');

// Create a request for the '/createMessage' Web Service
$request = CreateMessageRequest::create()
->addNotification(Notification::create()->setContent('Hello Jean !'));

// Call the REST Web Service
$response = $pushwoosh->createMessage($request);

// Check if its ok
if($response->isOk()) {
print 'Great, my message has been sent !';
} else {
print 'Oups, the sent failed :-(';
print 'Status code : ' . $response->getStatusCode();
print 'Status message : ' . $response->getStatusMessage();
}
?>

但我收到以下错误:

Fatal error: Class 'Pushwoosh' not found in /var/www/gomoob-php-pushwoosh/sample_1.php on line 9

Link他们没有提到代码中需要包含任何文件。他们只编写了示例代码程序。我按原样使用了该程序,但出现错误。

有人可以帮我运行这个程序吗?

最佳答案

您想要的类驻留在命名空间中,因此您需要指示 PHP 从那里“导入”它(和其他类);将此添加到脚本的开头:

    use Gomoob\Pushwoosh\Client\Pushwoosh;
use Gomoob\Pushwoosh\Model\Request\CreateMessageRequest;
use Gomoob\Pushwoosh\Model\Notification\Notification;

require __DIR__.'/vendor/autoload.php';

关于php - 是否需要包含来自 gomoob :php-pushwooshto to run a PHP program to send push notifications to iPhone? 的任何文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30590074/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com