php利用反射实现插件机制的方法
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-16 13:02:23 浏览: 评论:0
这篇文章主要介绍了php利用反射实现插件机制的方法,涉及php反射机制与插件的实现技巧,需要的朋友可以参考下
本文实例讲述了php利用反射实现插件机制的方法。分享给大家供大家参考。具体实现方法如下:
- <?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('Iplugin')) {
- $plugins[] = $reflectionClass;
- }
- }
- return $plugins;
- }
- function computeMenu(){
- $menu = array();
- foreach (findPlugins() as $plugin){
- if ($plugin->hasMethod('getMenuItems')) {
- $reflectionMethod = $plugin->getMethod('getMenuItems');
- 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('getArticles')) {
- $reflectionMethod = $plugin->getMethod('getArticles');
- 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 'MycoolPlugin';
- }
- public static function getMenuItems(){
- return array(array('description'=>'MycoolPlugin','link'=>'/MyCoolPlugin'));
- }
- public static function getArticles(){
- return array(array('path'=>'/MycoolPlugin','title'=>'This is a really cool article','text'=> 'xxxxxxxxx' ));
- }
- }
- $menu = computeMenu();
- $articles = computeArticles();
- print_r($menu);
- print_r($articles);
希望本文所述对大家的php程序设计有所帮助。
Tags: php反射插件机制

推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)