3

我正在尝试从 PHP 发送咆哮通知。接收计算机是 OSX,我能够接收本地通知以及来自其他计算机执行的 ruby​​ 脚本的通知。没有设置密码。

我使用php-growl类,我的代码如下所示:

<?php
    require 'class.growl.php';

    $ip_address = '10.0.0.210';

    $growl = new Growl($ip_address, '');

    // Register with the remote machine.
    // You only need to do this once.
    $growl -> register();

    // Send your message
    $growl -> notify('PHP Growl', 'Title', 'Here\'s the body text');
?>

我的脚本在本地注册了咆哮,但没有显示任何通知。我的日志文件中也找不到任何 PHP 错误。

关于如何在不使用密码的情况下发送/接收咆哮的任何建议?

4

1 回答 1

3

问题不在于使用空密码。在发送 Growl 通知之前,您首先需要注册您计划发送的通知。

<?PHP
    $growl = new Growl($ip_address);

    // Adding and registering your notifications with Growl
    // only needs to be done once per computer. Growl will
    // remember your app after this.
    $growl->addNotification('Notification Name');
    $growl->addNotification('Another Notification');
    $growl->register();

    // Send a notification
    $growl->notify('Notification Name', 'Some Title', 'Some message to display');

    // Send a second notification
    $growl->notify('Another Notification', 'Another Title', 'Something useful I hope.');
于 2011-06-09T19:23:41.933 回答