如何使用xmpphp和PHP发送多播消息(多个用户)

时间:2015-07-03 10:21:43

标签: php xmpphp

我想向ejabbered中的其他用户发送多播消息。

我成功发送了单曲'和' group'消息

  

//单个聊天

$conn->message($toJabberId, $message, "chat", null, null);
  

//用于群聊

$conn->presence(NULL, "available", $nickname);
$conn->message($chatroom, $message, "groupchat", null, null);
$conn->presence(NULL, "unavailable", $nickname);

现在我正试图在我的代码中包含多播设施。实际上我有以下示例节的多播,但不知道在xmpphp中使用。

<message to='multicast.jabber.org'>
   <addresses xmlns='http://jabber.org/protocol/address'>
       <address type='to' jid='hildjj@jabber.org/Work' desc='Joe Hildebrand'/>
       <address type='cc' jid='jer@jabber.org/Home' desc='Jeremie Miller'/>
   </addresses>
   <body>Hello, world!</body>
</message>

使用xmpphp组播消息的想法吗?

感谢。

0 个答案:

没有答案