Home  >  Article  >  Backend Development  >  How to use reflection to implement plug-in mechanism in php

How to use reflection to implement plug-in mechanism in php

墨辰丷
墨辰丷Original
2018-06-12 15:18:151091browse

This article mainly introduces the method of PHP using reflection to implement the plug-in mechanism, involving PHP reflection mechanism and plug-in implementation skills. Friends in need can refer to the following

The example of this article tells the use of PHP reflection to implement the plug-in mechanism Methods. The specific implementation method is as follows

The code is as follows:

<?php
/**
 * @name    PHP反射API--利用反射技术实现的插件系统架构
 */   
interface Iplugin{   
    public static function getName();   
}   
function findPlugins(){   
    $plugins = array();   
    foreach (get_declared_classes() as $class){   
        $reflectionClass = new ReflectionClass($class);   
        if ($reflectionClass->implementsInterface(&#39;Iplugin&#39;)) {   
            $plugins[] = $reflectionClass;   
        }   
    }   
    return $plugins;   
}   
function computeMenu(){   
    $menu = array();   
    foreach (findPlugins() as $plugin){   
        if ($plugin->hasMethod(&#39;getMenuItems&#39;)) {   
            $reflectionMethod = $plugin->getMethod(&#39;getMenuItems&#39;);   
            if ($reflectionMethod->isStatic()) {   
                $items = $reflectionMethod->invoke(null);   
            } else {   
                $pluginInstance = $plugin->newInstance();   
                $items = $reflectionMethod->invoke($pluginInstance);   
            }   
            $menu = array_merge($menu,$items);   
        }   
    }   
    return $menu;   
}   
function computeArticles(){   
    $articles = array();   
    foreach (findPlugins() as $plugin){   
        if ($plugin->hasMethod(&#39;getArticles&#39;)) {   
            $reflectionMethod = $plugin->getMethod(&#39;getArticles&#39;);   
            if ($reflectionMethod->isStatic()) {   
                $items = $reflectionMethod->invoke(null);   
            } else {   
                $pluginInstance = $plugin->newInstance();   
                $items = $reflectionMethod->invoke($pluginInstance);   
            }   
            $articles = array_merge($articles,$items);   
        }   
    }   
    return $articles;   
}   
class MycoolPugin implements Iplugin {   
    public static function getName(){   
        return &#39;MycoolPlugin&#39;;   
    }   
    public static function getMenuItems(){   
        return array(array(&#39;description&#39;=>&#39;MycoolPlugin&#39;,&#39;link&#39;=>&#39;/MyCoolPlugin&#39;));   
    }   
    public static function getArticles(){   
        return array(array(&#39;path&#39;=>&#39;/MycoolPlugin&#39;,&#39;title&#39;=>&#39;This is a really cool article&#39;,&#39;text&#39;=> &#39;xxxxxxxxx&#39; ));   
    }   
}
$menu = computeMenu();   
$articles    = computeArticles();   
print_r($menu);   
print_r($articles);

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's learning.

Related recommendations:

php realizes collection of China proxy server network

php variable determination and dynamic definition

PHP implements simple GET, POST, Cookie, Session and other functions

The above is the detailed content of How to use reflection to implement plug-in mechanism in php. For more information, please follow other related articles on the PHP Chinese website!

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