如何做一个PHP钩子系统?
如何在 PHP 应用程序中实现挂钩系统以在执行之前或之后更改代码。 PHP CMS(甚至简单的应用程序)的 hookloader 类的基本架构如何。那么如何将其扩展为完整的插件/模块加载器呢?
(另外,有没有关于CMS hook系统的书籍或教程?)
How do you impliment a hook system in a PHP application to change the code before or after it executes. How would the basic architecture of a hookloader class be for a PHP CMS (or even a simple application). How then could this be extended into a full plugins/modules loader?
(Also, are there any books or tutorials on a CMS hook system?)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以根据需要构建简单或复杂的事件系统它。
添加一个事件
然后像这样调用它
或者像这样删除该事件的所有回调
You can build an events system as simple or complex as you want it.
Add an event
Then call it like this
Or remove all callbacks for that event like this
这是另一个解决方案:
创建钩子
在您想要创建钩子的地方运行此命令:
x_do_action('header_scripts');
将函数附加到钩子
然后附加函数通过执行以下操作:
用于存储所有挂钩/事件的全局变量
的顶部
将其添加到主 PHP 函数文件或等效基本函数
Here's another solution:
Creating a hook
Run this wherever you want to create a hook:
x_do_action('header_scripts');
Attach a function to the hook
Then attach a function to the above by doing:
Global variable to store all hooks/events
Add this to the top of your main PHP functions file, or equivalent
Base functions
此解决方案存在一些问题,您无法为一个可调用挂钩设置多个函数。
你可以使用这个代码。
this solutions has some problems that you can't set several function for one callable hook.
you can fallow this code.