作者热门文章
- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
我正在尝试从 PHP 发送 growl 通知。接收计算机是 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');
?>
我的脚本在本地注册到growl,但是没有显示通知。我在我的日志文件中也找不到任何 PHP 错误。
关于如何在不使用密码的情况下发送/接收 growl 有什么建议吗?
最佳答案
问题不在于使用空密码。在发送 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.');
关于php - 如何从 php growl ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6287321/
我是一名优秀的程序员,十分优秀!