1. 程式人生 > >PHP實現事件機制實例分析

PHP實現事件機制實例分析

word-wrap [0 popu except switch targe att otto 對象

PHP實現事件機制實例分析


內置了事件機制的語言不多,php也沒有提供這種功能。事件(Event)說簡單了就是一個Observer模式。實現起來非常easy。可是有所不同的是,事件的監聽者誰都能夠加,可是僅僅能由直接包括它的對象觸發。

這就有一點點難度了。php有一個debug_backtrace函數,能夠得到當前的調用棧,由此能夠找到推斷調用事件觸發函數的對象是不是直接包括它的對象的辦法。

<?php
/**
* 事件
* @edit http://www.lai18.com 
* @author xiezhenye <[email protected]
/* */> */ 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); } } }

PHP實現事件機制實例分析