如何使用PHP绑定到Pusher / Websocket频道?

时间:2017-03-30 16:30:51

标签: php websocket pusher

在JavaScript中,可以阅读如下消息:

pusher = new Pusher('ae104dc5763aeef9aa52');
tradesChannel = pusher.subscribe('live_channel');
tradesChannel.bind('live_event', function (data) {
   # process it !
});

如何使用PHP实现相同的目标?

根据我的理解,PHP库确实发送到频道,但无法从中读取: https://github.com/pusher/pusher-http-php

1 个答案:

答案 0 :(得分:0)

Pusher PHP库用于与Pusher HTTP API进行交互,而不是与其websockets进行交互。

也许你可以用他们的webhook实现你的目标? Webhooks允许您的服务器(以及PHP)通知Pusher中发生的事件。 https://pusher.com/docs/webhooks