3

我想通过 jaxl.v3 开发与 facebook 的聊天。这是我的代码

    `$client->add_cb('on_chat_message', function($stanza) {

                 global $client;
                 // echo back incoming message stanza 
                 $stanza->to = $stanza->from;
                 $stanza->from = $client->full_jid->to_string();
                 print_r($stanza);
                 sendMessage($client); 
      });`

这是我打印的结果print_r($stanza)

我的 PrtScn 的图像

我现在问什么:

  • 如果我想获得 [text]=>hi价值。我该怎么写?我很久以前就尽力了,但我仍然无法Hi从这个数组中获得价值。请帮我解决它。谢谢,我期待尽快看到您的回复。
4

1 回答 1

1

尝试这个:

foreach($stanza->childrens as $child) {
   echo $child->text, '<br>';
}
于 2013-04-12T10:26:27.127 回答