search
HomeBackend DevelopmentPHP TutorialAn in-depth explanation of the principles of PHP plug-in mechanism_PHP tutorial
An in-depth explanation of the principles of PHP plug-in mechanism_PHP tutorialJul 15, 2016 pm 01:35 PM
phpprincipleexistusplug-inarticleyesmechanismgo deepInterpretation

In this article we mainly tell you some

Plug-in, also known as Plug-in, refers to a specific type of functional module (usually composed of Implemented by third-party developers), its characteristics are: activate it when you need it, disable/delete it when you don’t need it; and whether it is activated or disabled, it does not affect the operation of the core module of the system, which means that the plug-in is A non-intrusive modular design achieves loose coupling of core programs and plug-in programs. A typical example is the numerous third-party plug-ins in WordPress, such as the Akimet plug-in, which is used to filter spam on user comments.

A robust PHP plug-in mechanism, I think, must have the following features:

Dynamic monitoring and loading of plug-ins (Lookup)

Dynamic triggering of plug-ins

The implementation of the PHP plug-in mechanism in the above two points does not affect the operation of the core program

To implement plug-ins in the program, the first thing we should think of is to define different hooks (Hooks); "Hook" is a very vivid image The logical concept is that you can think of it as a plug-in trigger condition reserved by the system. Its logic principle is as follows: when the system executes a certain hook, it will determine whether the conditions of the hook are met; if it is met, it will first call the function specified by the hook, and then return to continue executing the rest of the program; if it is not met, it will first call the function specified by the hook. , just skip it. This is a bit like "interrupt protection" logic in assembly.

Some hooks may have been designed by the system in advance, such as the hook I mentioned earlier about comment spam filtering. Usually it has been designed by the core system developers into the comment processing logic; another category Hooks may be customized by users (developed by third-party developers) and usually exist in the presentation layer, such as an ordinary PHP form display page.

Maybe you find the above words boring and drowsy; but to understand the code I wrote below, it is essential to understand the principles of the above PHP plug-in mechanism.

The following is the core implementation of the plug-in mechanism in PHP. The core of the entire mechanism is divided into three major blocks:

A plug-in manager class: This is the core of the core. It is an application global Global object. It has three main responsibilities:

is responsible for monitoring all registered plug-ins and instantiating these plug-in objects.

is responsible for registering all plugins.

When the hook condition is met, the corresponding object method is triggered.

Plug-in function implementation: This is mostly done by third-party developers, but certain rules need to be followed. This rule is stipulated by the plug-in mechanism and varies depending on the plug-in mechanism. You will see the following display code See this rule.

Plug-in triggering: That is, the triggering condition of the hook. Specifically, this is a small piece of code that is placed where you need the plug-in implementation to trigger this hook.

I talked a lot about the principles of PHP plug-in mechanism. Let’s take a look at my implementation plan:

Plugin Manager PluginManager class:

The following is PHP Content cited by the plug-in mechanism:

  1. ?
  2. class PluginManager
  3. {
  4. private $_listeners = array();
  5. public function __construct()
  6. {
  7. #Here the $plugin array contains the plug-in information we obtain that has been activated by user
  8. #For the convenience of demonstration, we assume $plugin Contains at least
  9. #$plugin = array (
  10. # 'name' => 'Plugin name',
  11. # 'directory'=>'plugin Installation directory'
  12. #);
  13. $plugins = get_active_plugins();
    # Please implement this function yourself
  14. if($plugins)
  15. {
  16. foreach($plugins as $plugin)
  17. {//Assume that each The plug-in folder contains an actions.
    php file, which is the specific implementation of the plug-in
  18. if (@file_exists(STPATH ​​.'plugins/'.
    $plugin[ 'directory'].'/actions.php'))
  19. {
  20. include_once(STPATH ​​.'plugins/'.
    $plugin['directory'].'/actions.php');
  21. $class = $ plugin['name'].'_actions';
  22. if (class_exists($class))
  23. {
  24. //Initialize all plug-ins
  25. new $class($this);
  26. }
  27. }
  28. }
  29. }
  30. #Do something here Logging stuff
  31. }
  32. function register($hook, &$reference,
    $method)
  33. {
  34. //Get the method to be implemented by the plug-in
  35. $key = get_class($reference).'- >'.$method;
  36. //Push the plug-in reference and the method into the listening array
  37. $this->_listeners[$hook][$key] =
    array( &$reference, $method);
  38. # Do some logging stuff here
  39. }
  40. function trigger($hook, $data='')
  41. {
  42. $result = '';
  43. //Check whether the hook to be implemented is in the listening array
  44. if (isset($this->_listeners[$hook])
    && is_array($this-
    >_listeners[$hook])
    && count($this-
    >_listeners[$hook]) > 0)
  45. {
  46. // Loop call starts
  47. foreach ($this->_listeners[$hook] as $listener)
  48. {
  49. // Get the reference and method of the plug-in object
  50. $class =& $listener[0];
  51. $method = $listener[1];
  52. if(method_exists($class,$method))
  53. {
  54. // Method of dynamically calling plug-ins
  55. $result .= $class->$method($data);
  56. }
  57. }
  58. }
  59. #Do some logging stuff here
  60. return $ result;
  61. }
  62. }
  63. ?>

Add the above code The core of the entire plug-in mechanism is completed with no more than 100 lines of comments. It should be noted again that you must set it as a global class and load it first wherever the plug-in is needed. The places commented with # are the parts you need to complete yourself, including the acquisition and logging of the PHP plug-in mechanism, etc.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445941.htmlTechArticleIn this article we mainly tell you about some plug-ins, that is, Plug-in, which refers to a type of A specific functional module (usually implemented by third-party developers), its characteristics are: When you need...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Win11系统下如何显示文件后缀?详细解读Win11系统下如何显示文件后缀?详细解读Mar 09, 2024 am 08:24 AM

Win11系统下如何显示文件后缀?详细解读在Windows11操作系统中,文件后缀是指文件名后面的点及其后面的字符,用来表示文件的类型。在默认情况下,Windows11系统会隐藏文件的后缀,这样在文件资源管理器中只能看到文件的名称而无法直观地了解文件的类型。然而,对于一些用户来说,显示文件后缀是非常必要的,因为它能帮助他们更好地辨识文件类型以及进行相关操

电脑中的cookie数据在哪个文件夹?详细解读电脑中的cookie数据在哪个文件夹?详细解读Jan 19, 2024 am 10:19 AM

随着互联网的不断发展,人们越来越离不开浏览器。而在浏览器中,大家都会或多或少用到cookie这个东西。然而,很多人并不知道cookie数据在哪个文件夹中,今天就来详细解读一下。首先,我们需要了解cookie是什么。简单来说,cookie是由浏览器存储的一段文本信息,用于保存用户在浏览器中的一些个人设置或者记录用户的历史操作等等。当用户再次打开同一个网站时,c

php怎么设置implode没有分隔符php怎么设置implode没有分隔符Apr 18, 2022 pm 05:39 PM

在PHP中,可以利用implode()函数的第一个参数来设置没有分隔符,该函数的第一个参数用于规定数组元素之间放置的内容,默认是空字符串,也可将第一个参数设置为空,语法为“implode(数组)”或者“implode("",数组)”。

Linux Bashrc是什么?详细解读Linux Bashrc是什么?详细解读Mar 20, 2024 pm 09:18 PM

LinuxBashrc是Linux系统中的一个配置文件,用于设置用户的Bash(BourneAgainShell)环境。Bashrc文件存储了用户登录时所需的环境变量、启动脚本等信息,可以定制化用户的Shell环境。在Linux系统中,每个用户都有一个对应的Bashrc文件,位于用户的家目录下的隐藏文件夹中。Bashrc文件的作用主要有以下几点:设置环

解读国债 RWA 项目现状与六大趋势解读国债 RWA 项目现状与六大趋势Mar 24, 2024 am 09:01 AM

链上资产代币化正在成为一个重要的长期趋势,前景巨大。其中,国债RWA正在成为重要的分支。这一板块在2023年实现了近7倍的增长,在2023年年末经历短暂回落后,又迅速重回上升通道。本篇BingVentures研究文章将讨论国债RWA以及整个RWA版块的现状和重要发展趋势。RWA生态现状在当前市场环境中,DeFi收益率相对较低,同时实际利率上升,这促进了代币化国债等RWA类资产的增长。投资者更倾向于稳定、可预测收益的资产,这一趋势在金融市场和加密货币市场之间寻求平衡的投资者中尤为明显。代币化国债等

Java文档解读:System类的exit()方法用法解析Java文档解读:System类的exit()方法用法解析Nov 03, 2023 pm 03:27 PM

Java文档解读:System类的exit()方法用法解析,需要具体代码示例System类是Java中的一个重要类,它提供了许多与系统相关的功能和方法。其中,exit()方法是System类中的一个常用方法,用于终止当前正在运行的Java虚拟机。在本文中,我们将对exit()方法的用法进行解析,并给出具体的代码示例。exit()方法的定义如下:public

深入了解HTTP状态码100:它代表什么意思?深入了解HTTP状态码100:它代表什么意思?Feb 20, 2024 pm 04:15 PM

深入了解HTTP状态码100:它代表什么意思?HTTP协议是现代互联网应用中最为常用的协议之一,它定义了浏览器和Web服务器之间进行通信所需的标准规范。在HTTP请求和响应的过程中,服务器会向浏览器返回各种类型的状态码,以反映请求的处理情况。其中,HTTP状态码100是一种特殊的状态码,用来表示"继续"。HTTP状态码由三位数字组成,每个状态码都有特定的含义

Java文档解读:Short类的toHexString()方法功能解析Java文档解读:Short类的toHexString()方法功能解析Nov 03, 2023 am 11:57 AM

Java文档解读:Short类的toHexString()方法功能解析在Java编程中,我们经常需要进行数值的转换和处理。Short类是Java中的一个包装类,用于处理short类型的数据。其中,Short类提供了一个toHexString()方法,用于将short类型的数据转换为十六进制形式的字符串。本文将对toHexString()方法的功能进行解析,并

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor