当前位置:首页 > PHP教程 > php高级应用 > 列表

php实现监听事件

发布:smiling 来源: PHP粉丝网  添加日期:2020-05-16 15:09:09 浏览: 评论:0 

本文介绍关于在php实现事件监听与触发实例程序代码,如何实现事件监听,参考了jQuery的事件绑定思路,简单的实现了一下。

主要功能:

1.绑定事件 支持一个事件绑定多个动作,支持绑定一次性事件

2.触发事件

3.注销事件

代码如下:

  1. class Event  
  2. {  
  3.     protected static $listens       = array();  
  4.  
  5.     public static function listen($event$callback$once=false){  
  6.         if(!is_callable($callback)) return false;  
  7.         self::$listens[$event][]    = array('callback'=>$callback'once'=>$once);  
  8.         return true;  
  9.     }  
  10.  
  11.     public static function one($event$callback){  
  12.         return self::listen($event$callback, true);  
  13.     }  
  14.  
  15.     public static function remove($event$index=null){  
  16.         if(is_null($index))  
  17.             unset(self::$listens[$event]);  
  18.         else 
  19.             unset(self::$listens[$event][$index]);  
  20.     }  
  21. //phpfensi.com 
  22.     public static function trigger(){  
  23.         if(!func_num_args()) return;  
  24.         $args                       = func_get_args();  
  25.         $event                      = array_shift($args);  
  26.         if(!isset(self::$listens[$event])) return false;  
  27.         foreach((array) self::$listens[$eventas $index=>$listen){  
  28.             $callback               = $listen['callback'];  
  29.             $listen['once'] && self::remove($event$index);  
  30.             call_user_func_array($callback$args);  
  31.         }  
  32.     }  

以下是一些调用的例子:

  1. // 增加监听walk事件  
  2. Event::listen('walk'function(){  
  3.     echo "I am walking...n";  
  4. });  
  5. // 增加监听walk一次性事件  
  6. Event::listen('walk'function(){  
  7.     echo "I am listening...n";  
  8. }, true);  
  9. // 触发walk事件  
  10. Event::trigger('walk');  
  11. /*  
  12. I am walking...  
  13. I am listening...  
  14. */ 
  15. Event::trigger('walk');  
  16. /*  
  17. I am walking...  
  18. */ 
  19.  
  20. Event::one('say'function($name=''){  
  21.     echo "I am {$name}n";  
  22. });  
  23.  
  24. Event::trigger('say''deeka'); // 输出 I am deeka  
  25. Event::trigger('say''deeka'); // not run  
  26.  
  27. class Foo  
  28. {  
  29.     public function bar(){  
  30.         echo "Foo::bar() is calledn";  
  31.     }  
  32.  
  33.     public function test(){  
  34.         echo "Foo::foo() is called, agrs:".json_encode(func_get_args())."n";  
  35.     }  
  36. }  
  37.  
  38. $foo    = new Foo;  
  39.  
  40. Event::listen('bar'array($foo'bar'));  
  41. Event::trigger('bar');  
  42.  
  43. Event::listen('test'array($foo'test'));  
  44. Event::trigger('test', 1, 2, 3);  
  45.  
  46. class Bar  
  47. {  
  48.     public static function foo(){  
  49.         echo "Bar::foo() is calledn";  
  50.     }  
  51. }  
  52.  
  53. Event::listen('bar1'array('Bar''foo'));  
  54. Event::trigger('bar1');  
  55.  
  56. Event::listen('bar2''Bar::foo');  
  57. Event::trigger('bar2');  
  58.  
  59. function bar(){  
  60.     echo "bar() is calledn";  
  61. }  
  62.  
  63. Event::listen('bar3''bar');  
  64. Event::trigger('bar3'); 

Tags: php监听事件

分享到: