编程语言
首页 > 编程语言> > PHP-Jaxl类的基本回调

PHP-Jaxl类的基本回调

作者:互联网

我想在我的项目中以类的形式实现Jaxl,但是所有的Jaxl示例都是基于函数的,所有示例都使用闭包来运行回调.类中的方法像函数库一样无法访问.如何在类中调用wait_for_register_form()?
 我的基类实现是这样的(注意粗体注释):

    <?php

    class XmppsController extends AppController {

    public function test() {

        require_once 'JAXL/jaxl.php';
        global $client;

        $client = new JAXL(array(
            'jid' => 'localhost',
            'log_level' => JAXL_INFO
        ));

        $client->require_xep(array(
            '0077'    // InBand Registration   
        ));

         global $thisObj;


        $thisObj = $this;


        $client->add_cb('on_stream_features', function($stanza)  {
            global $client,$thisObj;
            $client->xeps['0077']->get_form('localhost');

            return "wait_for_register_form";  **//it calls wait_for_register_form() function, but I want call this function in class. how can I solve this problem?**
        });

        $client->start();
        echo "done\n";       

    }

    public function wait_for_register_form($event, $args) {
       // something
    }
}

解决方法:

最初并未编写示例register_user.php来演示如何将FSM状态扩展到基类之外,以适应您要实现的特定用例.我已经在JAXLFsm内推送了一个补丁,现在您可以执行同样的操作了.如果您对详细信息感兴趣,这是commit log.

现在尝试同样的方法,它应该可以工作.

标签:ejabberd,xmpp,php,xmpphp
来源: https://codeday.me/bug/20191127/2075128.html