我想在我的项目中以类的形式实现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。
现在尝试同样的方法,它应该会起作用。
关于php - Jaxl类的基本回调,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/12717669/