gpt4 book ai didi

php - 如何从 php growl

转载 作者:搜寻专家 更新时间:2023-10-31 20:52:12 25 4
gpt4 key购买 nike

我正在尝试从 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/

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