首页 > 开发 > PHP > 正文

基于PHP实现的事件机制实例分析

2024-05-04 23:36:24
字体:
来源:转载
供稿:网友

这篇文章主要介绍了基于PHP实现的事件机制,实例分析了事件机制的原理及php中debug_backtrace函数完成事件机制的实现技巧,需要的朋友可以参考下

本文实例讲述了基于PHP实现的事件机制。分享给大家供大家参考。具体分析如下:

内置了事件机制的语言不多,php也没有提供这样的功能。事件(Event)说简单了就是一个Observer模式,实现起来很容易。但是有所不同的是,事件的监听者谁都可以加,但是只能由直接包含它的对象触发。这就有一点点难度了。php有一个debug_backtrace函数,可以得到当前的调用栈,由此可以找到判断调用事件触发函数的对象是不是直接包含它的对象的办法。

 

 
  1. <?php 
  2. /** 
  3. * 事件 
  4. * 
  5. * @author xiezhenye <xiezhenye@gmail.com> 
  6. * @since 2007-7-20 
  7. */ 
  8. class Event { 
  9. private $callbacks = array(); 
  10. private $holder
  11. function __construct() { 
  12. $bt = debug_backtrace(); 
  13. if (count($bt) < 2) { 
  14. $this->holder = null; 
  15. return
  16. $this->holder = &$bt[1]['object']; 
  17. function attach() { 
  18. $args = func_get_args(); 
  19. switch (count($args)) { 
  20. case 1: 
  21. if (is_callable($args[0])) { 
  22. $this->callbacks[]= $args[0]; 
  23. return
  24. break
  25. case 2: 
  26. if (is_object($args[0]) && is_string($args[1])) { 
  27. $this->callbacks[]= array(&$args[0], $args[1]); 
  28. return
  29. default
  30. return
  31. function notify() { 
  32. $bt = debug_backtrace(); 
  33. if ($this->holder &&  
  34. ((count($bt) >= 2 && $bt[count($bt) - 1]['object'] !== $this->holder) 
  35. || (count($bt) < 2))) { 
  36. throw(new Exception('Notify can only be called in holder')); 
  37. foreach ($this->callbacks as $callback) { 
  38. $args = func_get_args(); 
  39. call_user_func_array($callback$args); 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表