이 기사에서는 주로 코드 형식으로 여러 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
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 콜백 함수 소개의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!