博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
学习yii2.0框架阅读代码(五)
阅读量:5161 次
发布时间:2019-06-13

本文共 3485 字,大约阅读时间需要 11 分钟。

vendor/yiisoft/yii2/base/Event.php

$event) { if ($event[0] === $handler) { unset(self::$_events[$name][$class][$i]); $removed = true; } } if ($removed) { // 移除之后,使数组重新变成一个自然数组 self::$_events[$name][$class] = array_values(self::$_events[$name][$class]); } return $removed; } } /** * Returns a value indicating whether there is any handler attached to the specified class-level event. * Note that this method will also check all parent classes to see if there is any handler attached * to the named event. * 检测在某个类或者对象是否具有某个事件 * @param string|object $class the object or the fully qualified class name specifying the class-level event. * @param string $name the event name. * @return boolean whether there is any handler attached to the event. */ public static function hasHandlers($class, $name) { if (empty(self::$_events[$name])) { // 不存在,直接返回 return false; } if (is_object($class)) { // 如果是一个 object,就获取其类名 $class = get_class($class); } else { // 如果是一个类名,就去掉 class 最左边的斜杠 $class = ltrim($class, '\\'); } // 如果该类中找不到,就去父类中找,直到找到或者没有父类了为止 do { if (!empty(self::$_events[$name][$class])) { return true; } } while (($class = get_parent_class($class)) !== false); return false; } /** * Triggers a class-level event. * This method will cause invocation of event handlers that are attached to the named event * for the specified class and all its parent classes. * 触发某个类或者对象的某个事件 * @param string|object $class the object or the fully qualified class name specifying the class-level event. * @param string $name the event name. * @param Event $event the event parameter. If not set, a default [[Event]] object will be created. */ public static function trigger($class, $name, $event = null) { if (empty(self::$_events[$name])) { return; } if ($event === null) { // 事件不存在,就创建一个 Event 对象 $event = new static; } // 设置event对象的属性,默认是未被处理的 $event->handled = false; $event->name = $name; if (is_object($class)) { if ($event->sender === null) { // 如果 $class 是个对象,并且是 sender 为空,就将 $class 赋给 sender,即 $class 就是触发事件的对象 $event->sender = $class; } $class = get_class($class); } else { $class = ltrim($class, '\\'); } // 循环类的 $_event,直到遇到 $event->handled 为真或者没有父类了为止 do { if (!empty(self::$_events[$name][$class])) { foreach (self::$_events[$name][$class] as $handler) { // 将参数赋到 event 对象的 data 属性上 $event->data = $handler[1]; // 调用 $handler 方法 // 在方法中,可以用 $this->data 取到相应的参数 // 也可以在其中设置 $this->handled 的值,中断后续事件的触发 call_user_func($handler[0], $event); // 当某个 handled 被设置为 true 时,执行到这个事件的时候,会停止,并忽略剩下的事件 if ($event->handled) { return; } } } } while (($class = get_parent_class($class)) !== false); }}

 

转载于:https://www.cnblogs.com/xwzj/p/5393859.html

你可能感兴趣的文章
javascript实现KMP算法(没啥实用价值,只供学习)
查看>>
洛谷P2324 [SCOI2005]骑士精神
查看>>
Android MVP框架实现登录案例
查看>>
使用全局唯一标识(GUID)
查看>>
题解【poj2774 Long Long Message】
查看>>
beyondCompare试用期到期解决办法
查看>>
成功实施的APS项目故事分享---我们数据治理的心路历程
查看>>
4.2.7 Waiting ten thousand years for Love
查看>>
java concurrent 探秘
查看>>
IE模式下EasyUI Combobox无效问题
查看>>
五种常用的图片格式及其是否有数据压缩的总结
查看>>
【miscellaneous】华为智能视频监控系统设计解决方案
查看>>
netstat实现原理
查看>>
寻找完美平方数
查看>>
初学反编译-.-
查看>>
防御式编程
查看>>
单线程并发的server端
查看>>
View可以设置tag携带数据
查看>>
individual reading task ---12061183 叶露婷
查看>>
delphi的消息对话框
查看>>