Loading... # [4种PHP回调函数风格](https://blog.p2hp.com/archives/3925) ## 匿名函数 ```php $server->on('Request', function ($req, $resp) { echo "hello world"; }); ``` ## 类静态方法 ```php class A { static function test($req, $resp) { echo "hello world"; } } $server->on('Request', 'A::Test'); $server->on('Request', array('A', 'Test')); ``` ## 函数 ```php function my_onRequest($req, $resp) { echo "hello world"; } $server->on('Request', 'my_onRequest'); ``` ## 对象方法 ```php class A { function test($req, $resp) { echo "hello world"; } } $object = new A(); $server->on('Request', array($object, 'test')); ``` 最后修改:2023 年 08 月 09 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏