本文主要和大家分享幾種PHP回呼函數簡介,主要以程式碼的方法,希望能幫助大家。
匿名函數
$server->on('Request', function ($req, $resp) { echo "hello world"; });
類別靜態方法
class A{ static function test($req, $resp) { echo "hello world"; } }$server->on('Request', 'A::Test');$server->on('Request', array('A', 'Test'));
函數
function my_onRequest($req, $resp) { echo "hello world"; }$server->on('Request', 'my_onRequest');
物件方法
class A{ function test($req, $resp) { echo "hello world"; } }$object = new A();$server->on('Request', array($object, 'test'));
相關推薦:
#以上是幾種PHP回呼函數簡介的詳細內容。更多資訊請關注PHP中文網其他相關文章!