3

我正在尝试构建一个通知消息系统。我使用SimpleWsServer.php服务器示例。当服务器上的任务完成时,我想向用户的浏览器推送通知。这需要使用 PHP 来完成,我找不到显示此内容的教程。所有教程似乎都显示了 tavendo/AutobahnJS 脚本在 PHP 服务器作为管理器运行时发送和接收。

是否可以使用 php 脚本向订阅者发送消息?

4

1 回答 1

7

天文,

这实际上非常简单,可以通过几种不同的方式完成。我们设计了 Thruway 客户端来模仿 AutobahnJS 客户端,因此大多数简单的示例将直接翻译。

我假设您想从网站发布(不是长时间运行的 php 脚本)。

在您的 PHP 网站中,您需要执行以下操作:

$connection = new \Thruway\Connection(
    [
        "realm"   => 'com.example.astro',
        "url"     => 'ws://demo.thruway.ws:9090', //You can use this demo server or replace it with your router's IP
    ]
);

$connection->on('open', function (\Thruway\ClientSession $session) use ($connection) {

    //publish an event
    $session->publish('com.example.hello', ['Hello, world from PHP!!!'], [], ["acknowledge" => true])->then(
        function () use ($connection) {
            $connection->close(); //You must close the connection or this will hang
            echo "Publish Acknowledged!\n";
        },
        function ($error) {
            // publish failed
            echo "Publish Error {$error}\n";
        }
    );
  });

 $connection->open();

javascript 客户端(使用 AutobahnJS)将如下所示:

var connection = new autobahn.Connection({
    url: 'ws://demo.thruway.ws:9090',  //You can use this demo server or replace it with your router's IP
    realm: 'com.example.astro'
});

connection.onopen = function (session) {

    //subscribe to a topic
    function onevent(args) {
        console.log("Someone published this to 'com.example.hello': ", args);    
    }

    session.subscribe('com.example.hello', onevent).then(
        function (subscription) {
            console.log("subscription info", subscription);
        },
        function (error) {
           console.log("subscription error", error);
        }
    );
};

connection.open();

我还为 javascript 端创建了一个plunker ,为 PHP 端创建了一个runnable

于 2014-10-02T00:13:11.370 回答