0

0

codeigniter是如何实现钩子机制的?

php中文网

php中文网

发布时间:2016-07-25 08:46:20

|

1278人浏览过

|

来源于php中文网

原创

codeigniter是如何实现钩子机制的?,有需要的朋友可以参考下。


记得上一次去到喜啦面试,面试官问我一个问题:codeigniter是如何实现钩子机制的?
当时答不上来,后来回来之后查了一些资料才明白,所以在这里记录一下:
codeigniter的钩子是这样实现的:首先在框架的核心文件system/core/CodeIniter.php文件的 122行,载入Hooks类,接着在该文件中定义了几个挂载点,比如pre_system(129行)、post_controller_constructor(295行)等,并在这些挂载点上面执行hooks类的_call_hook() 方法。

另附codeigniter的hooks类的源代码:

  1. /**
  2. * CodeIgniter
  3. *
  4. * An open source application development framework for PHP 5.1.6 or newer
  5. *
  6. * @package CodeIgniter
  7. * @author EllisLab Dev Team
  8. * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc.
  9. * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/)
  10. * @license http://codeigniter.com/user_guide/license.html
  11. * [url=home.php?mod=space&uid=17823]@LINK[/url] http://codeigniter.com
  12. * @since Version 1.0
  13. * @filesource
  14. */
  15. // ------------------------------------------------------------------------
  16. /**
  17. * CodeIgniter Hooks Class
  18. *
  19. * Provides a mechanism to extend the base system without hacking.
  20. *
  21. * @package CodeIgniter
  22. * @subpackage Libraries
  23. * @category Libraries
  24. * @author EllisLab Dev Team
  25. * @link http://codeigniter.com/user_guide/libraries/encryption.html
  26. */
  27. class CI_Hooks {
  28. /**
  29. * Determines wether hooks are enabled
  30. *
  31. * @var bool
  32. */
  33. var $enabled = FALSE;
  34. /**
  35. * List of all hooks set in config/hooks.php
  36. *
  37. * @var array
  38. */
  39. var $hooks = array();
  40. /**
  41. * Determines wether hook is in progress, used to prevent infinte loops
  42. *
  43. * @var bool
  44. */
  45. var $in_progress = FALSE;
  46. /**
  47. * Constructor
  48. *
  49. */
  50. function __construct()
  51. {
  52. $this->_initialize();
  53. log_message('debug', "Hooks Class Initialized");
  54. }
  55. // --------------------------------------------------------------------
  56. /**
  57. * Initialize the Hooks Preferences
  58. *
  59. * @access private
  60. * @return void
  61. */
  62. function _initialize()
  63. {
  64. $CFG =& load_class('Config', 'core');
  65. // If hooks are not enabled in the config file
  66. // there is nothing else to do
  67. if ($CFG->item('enable_hooks') == FALSE)
  68. {
  69. return;
  70. }
  71. // Grab the "hooks" definition file.
  72. // If there are no hooks, we're done.
  73. if (defined('ENVIRONMENT') AND is_file(APPPATH.'config/'.ENVIRONMENT.'/hooks.php'))
  74. {
  75. include(APPPATH.'config/'.ENVIRONMENT.'/hooks.php');
  76. }
  77. elseif (is_file(APPPATH.'config/hooks.php'))
  78. {
  79. include(APPPATH.'config/hooks.php');
  80. }
  81. if ( ! isset($hook) OR ! is_array($hook))
  82. {
  83. return;
  84. }
  85. $this->hooks =& $hook;
  86. $this->enabled = TRUE;
  87. }
  88. // --------------------------------------------------------------------
  89. /**
  90. * Call Hook
  91. *
  92. * Calls a particular hook
  93. *
  94. * @access private
  95. * @param string the hook name
  96. * @return mixed
  97. */
  98. function _call_hook($which = '')
  99. {
  100. if ( ! $this->enabled OR ! isset($this->hooks[$which]))
  101. {
  102. return FALSE;
  103. }
  104. if (isset($this->hooks[$which][0]) AND is_array($this->hooks[$which][0]))
  105. {
  106. foreach ($this->hooks[$which] as $val)
  107. {
  108. $this->_run_hook($val);
  109. }
  110. }
  111. else
  112. {
  113. $this->_run_hook($this->hooks[$which]);
  114. }
  115. return TRUE;
  116. }
  117. // --------------------------------------------------------------------
  118. /**
  119. * Run Hook
  120. *
  121. * Runs a particular hook
  122. *
  123. * @access private
  124. * @param array the hook details
  125. * @return bool
  126. */
  127. function _run_hook($data)
  128. {
  129. if ( ! is_array($data))
  130. {
  131. return FALSE;
  132. }
  133. // -----------------------------------
  134. // Safety - Prevents run-away loops
  135. // -----------------------------------
  136. // If the script being called happens to have the same
  137. // hook call within it a loop can happen
  138. if ($this->in_progress == TRUE)
  139. {
  140. return;
  141. }
  142. // -----------------------------------
  143. // Set file path
  144. // -----------------------------------
  145. if ( ! isset($data['filepath']) OR ! isset($data['filename']))
  146. {
  147. return FALSE;
  148. }
  149. $filepath = APPPATH.$data['filepath'].'/'.$data['filename'];
  150. if ( ! file_exists($filepath))
  151. {
  152. return FALSE;
  153. }
  154. // -----------------------------------
  155. // Set class/function name
  156. // -----------------------------------
  157. $class = FALSE;
  158. $function = FALSE;
  159. $params = '';
  160. if (isset($data['class']) AND $data['class'] != '')
  161. {
  162. $class = $data['class'];
  163. }
  164. if (isset($data['function']))
  165. {
  166. $function = $data['function'];
  167. }
  168. if (isset($data['params']))
  169. {
  170. $params = $data['params'];
  171. }
  172. if ($class === FALSE AND $function === FALSE)
  173. {
  174. return FALSE;
  175. }
  176. // -----------------------------------
  177. // Set the in_progress flag
  178. // -----------------------------------
  179. $this->in_progress = TRUE;
  180. // -----------------------------------
  181. // Call the requested class and/or function
  182. // -----------------------------------
  183. if ($class !== FALSE)
  184. {
  185. if ( ! class_exists($class))
  186. {
  187. require($filepath);
  188. }
  189. $HOOK = new $class;
  190. $HOOK->$function($params);
  191. }
  192. else
  193. {
  194. if ( ! function_exists($function))
  195. {
  196. require($filepath);
  197. }
  198. $function($params);
  199. }
  200. $this->in_progress = FALSE;
  201. return TRUE;
  202. }
  203. }
  204. // END CI_Hooks class
  205. /* End of file Hooks.php */
  206. /* Location: ./system/core/Hooks.php */
复制代码

可以看出codeigniter实现钩子机制的方式不够优雅,其实完全可以使用观察者模式来实现钩子机制,将挂载点当做监听的事件。

狼群淘客 免费开源淘宝客程序
狼群淘客 免费开源淘宝客程序

狼群淘客系统基于canphp框架进行开发,MVC结构、数据库碎片式缓存机制,使网站支持更大的负载量,结合淘宝开放平台API实现的一个淘宝客购物导航系统采用php+mysql实现,任何人都可以免费下载使用 。狼群淘客的任何代码都是不加密的,你不用担心会有任何写死的PID,不用担心你的劳动成果被窃取。

下载
如何实现, codeigniter


热门AI工具

更多
DeepSeek
DeepSeek

幻方量化公司旗下的开源大模型平台

豆包大模型
豆包大模型

字节跳动自主研发的一系列大型语言模型

通义千问
通义千问

阿里巴巴推出的全能AI助手

腾讯元宝
腾讯元宝

腾讯混元平台推出的AI助手

文心一言
文心一言

文心一言是百度开发的AI聊天机器人,通过对话可以生成各种形式的内容。

讯飞写作
讯飞写作

基于讯飞星火大模型的AI写作工具,可以快速生成新闻稿件、品宣文案、工作总结、心得体会等各种文文稿

即梦AI
即梦AI

一站式AI创作平台,免费AI图片和视频生成。

ChatGPT
ChatGPT

最最强大的AI聊天机器人程序,ChatGPT不单是聊天机器人,还能进行撰写邮件、视频脚本、文案、翻译、代码等任务。

相关专题

更多
go语言 注释编码
go语言 注释编码

本专题整合了go语言注释、注释规范等等内容,阅读专题下面的文章了解更多详细内容。

2

2026.01.31

go语言 math包
go语言 math包

本专题整合了go语言math包相关内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

go语言输入函数
go语言输入函数

本专题整合了go语言输入相关教程内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

golang 循环遍历
golang 循环遍历

本专题整合了golang循环遍历相关教程,阅读专题下面的文章了解更多详细内容。

0

2026.01.31

Golang人工智能合集
Golang人工智能合集

本专题整合了Golang人工智能相关内容,阅读专题下面的文章了解更多详细内容。

1

2026.01.31

2026赚钱平台入口大全
2026赚钱平台入口大全

2026年最新赚钱平台入口汇总,涵盖任务众包、内容创作、电商运营、技能变现等多类正规渠道,助你轻松开启副业增收之路。阅读专题下面的文章了解更多详细内容。

76

2026.01.31

高干文在线阅读网站大全
高干文在线阅读网站大全

汇集热门1v1高干文免费阅读资源,涵盖都市言情、京味大院、军旅高干等经典题材,情节紧凑、人物鲜明。阅读专题下面的文章了解更多详细内容。

73

2026.01.31

无需付费的漫画app大全
无需付费的漫画app大全

想找真正免费又无套路的漫画App?本合集精选多款永久免费、资源丰富、无广告干扰的优质漫画应用,涵盖国漫、日漫、韩漫及经典老番,满足各类阅读需求。阅读专题下面的文章了解更多详细内容。

67

2026.01.31

漫画免费在线观看地址大全
漫画免费在线观看地址大全

想找免费又资源丰富的漫画网站?本合集精选2025-2026年热门平台,涵盖国漫、日漫、韩漫等多类型作品,支持高清流畅阅读与离线缓存。阅读专题下面的文章了解更多详细内容。

19

2026.01.31

热门下载

更多
网站特效
/
网站源码
/
网站素材
/
前端模板

精品课程

更多
相关推荐
/
热门推荐
/
最新课程
php-src源码分析探索
php-src源码分析探索

共6课时 | 0.5万人学习

进程与SOCKET
进程与SOCKET

共6课时 | 0.4万人学习

计算机系统从应用层到底层
计算机系统从应用层到底层

共6课时 | 0.4万人学习

关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送

Copyright 2014-2026 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号