ホームページ > php教程 > PHP源码 > 用PHP实现的事件机制

用PHP实现的事件机制

PHP中文网
リリース: 2016-05-25 17:14:39
オリジナル
1080 人が閲覧しました

php代码

<?php

/**
* 事件
*
* @author xiezhenye <xiezhenye@gmail.com>
* @since 2007-7-20
*/
class Event {
   private $callbacks = array();
   private $holder;

   function __construct() {
       $bt = debug_backtrace();
       if (count($bt) < 2) {
           $this->holder = null;
           return;
       }
       $this->holder = &$bt[1][&#39;object&#39;];
   }
   
   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][&#39;object&#39;] !== $this->holder)
                || (count($bt) < 2))) {
           throw(new Exception(&#39;Notify can only be called in holder&#39;));   
       }
       foreach ($this->callbacks as $callback) {
           $args = func_get_args();
           call_user_func_array($callback, $args);
       }
   }
}
ログイン後にコピー
関連ラベル:
ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のおすすめ
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート