이 글은 주로 PHP의 이벤트 메커니즘의 정의와 구현을 소개합니다. 관심 있는 친구들이 참고하면 도움이 될 것입니다.
이 문서의 예제에서는 다음과 같이 PHP에서 이벤트 메커니즘을 구현하는 방법을 설명합니다.
<?php /** * 事件 */ class Event { private $callbacks = array(); private $holder; function __construct() { $bt = debug_backtrace(); if (count($bt) < 2) { $this->holder = null; return; } $this->holder = &$bt[1]['object']; } function attach() { $args = func_get_args(); switch (count($args)) { case 1: if (is_callable($args[0])) { $this->callbacks[]= $args[0]; return; } break; case 2: if (is_object($args[0]) && is_string($args[1])) { $this->callbacks[]= array(&$args[0], $args[1]); } return; default: return; } } function notify() { $bt = debug_backtrace(); if ($this->holder && ((count($bt) >= 2 && $bt[count($bt) - 1]['object'] !== $this->holder) || (count($bt) < 2))) { throw(new Exception('Notify can only be called in holder')); } foreach ($this->callbacks as $callback) { $args = func_get_args(); call_user_func_array($callback, $args); } } }
요약: 위는 이 문서의 전체 내용입니다. 모든 사람의 학습에 도움이 되기를 바랍니다.
관련 권장 사항:
jQuery 기반으로 PHP 및 mysql을 통해 등급 기능 구현
PHP에서 중국어 병음의 첫 글자 가져오기 프로그램 방식
위 내용은 PHP의 이벤트 메커니즘 정의 및 구현의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!