3

プロジェクトに 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
    }
}
4

1 に答える 1

3

基本クラスの外側で FSM 状態を拡張するデモを示すregister_user.phpの例は、達成しようとしている特定のユースケースに対応するために最初に作成されたものではありません。JAXLFsm内にパッチをプッシュしました。これにより、同じことができるようになります。詳細に興味がある場合は、ここにコミットログがあります。

今すぐ同じことを試してみてください。うまくいくはずです。

于 2012-10-05T12:46:22.747 に答える