PHP支援回撥的函數有哪些?

2020-07-16 10:06:27

PHP支援回撥的函數有:1、匿名函數,程式碼為【$server->on 'Request'】;2、類靜態方法,程式碼為【static function test $req】;3、函數,程式碼為【my_onRequest $req】。

PHP支援回撥的函數有:

1、匿名函數

$server->on('Request', function ($req, $resp) use ($a, $b, $c) {
    echo "hello world";
});

可使用use向匿名函數傳遞引數

2、類靜態方法

class A
{
    static function test($req, $resp)
    {
        echo "hello world";
    }
}
$server->on('Request', 'A::Test');
$server->on('Request', array('A', 'Test'));

3、函數

function my_onRequest($req, $resp)
{
    echo "hello world";
}
$server->on('Request', 'my_onRequest');

4、物件方法

class A
{
    function test($req, $resp)
    {
        echo "hello world";
    }
}
$object = new A();
$server->on('Request', array($object, 'test'));

以上就是PHP支援回撥的函數有哪些?的詳細內容,更多請關注TW511.COM其它相關文章!