手机
当前位置:查字典教程网 >编程开发 >php教程 >php利用反射实现插件机制的方法
php利用反射实现插件机制的方法
摘要:本文实例讲述了php利用反射实现插件机制的方法。分享给大家供大家参考。具体实现方法如下:复制代码代码如下:implementsInterfa...

本文实例讲述了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程序设计有所帮助。

【php利用反射实现插件机制的方法】相关文章:

实现树状结构的两种方法

php 字母大小写转换的方法

php采集中国代理服务器网的方法

PHP基于MySQL数据库实现对象持久层的方法

php中smarty实现多模版网站的方法

php实现随机显示图片方法汇总

php实现修改新闻时删除图片的方法

php将HTML表格每行每列转为数组实现采集表格数据的方法

php实现在服务器端调整图片大小的方法

利用php和js实现页面数据刷新

精品推荐
分类导航