Home  >  Article  >  Backend Development  >  How to use reflection to implement plug-in code example in PHP

How to use reflection to implement plug-in code example in PHP

伊谢尔伦
伊谢尔伦Original
2017-07-01 10:55:461291browse

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. Share it with everyone for your reference. 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);


The above is the detailed content of How to use reflection to implement plug-in code example 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