我正在尝试制作一个简单插件系统的原型,我计划在其中一个项目中实现。我有4个文件:
Index.php
Plugins/__BASE.php
Plugins/Sample.php
索引文件使用我在Plugins
类(__BASE.php
)中定义的函数检查“oncall”方法是否属于Plugins文件夹中的类。如果确实存在,它将执行它。
require_once 'Plugins/__BASE.PHP';
$func = 'oncall';
$plugins = new Plugins();
if($plugins->IsPluginMethod($func)) {
$obj = $plugins->GetObject($func);
call_user_func(array($obj, $func));
}
else
echo "'$func' isn't part of a plugin!";
__BASE.php
是所有插件都将扩展的基本插件类。它有两种方法:IsPluginMethod()
和GetObject()
。 IsPluginMethod检查提供的方法名称是否属于某个类,GetObject返回该方法所属类的实例。
class Plugins {
public $age = "100";
public function IsPluginMethod($func) {
foreach(glob('*.php') as, $file) {
if($file != '__BASE.php') {
require_once $file;
$class = basename($file, '.php');
if(class_exists($class)) {
$obj = new $class;
if(method_exists($obj, $func))
return true;
else
return false;
}
}
}
}
public function GetObject($func) {
foreach(glob('*.php') as $file) {
if($file != '__BASE.php') {
require_once $file;
$class = basename($file, '.php');
if(class_exists($class)) {
$obj = new $class;
return $obj;
}
}
}
}
}
Sample.php是一个示例插件,可以打印插件类中定义的$ this-> age。
class Sample extends Plugins {
public function oncall() {
echo "Age: {$this->age}";
}
}
这是我在index.php中看到的:
'oncall' isn't part of a plugin!
有人可以帮忙吗?感谢。
答案 0 :(得分:0)
在__BASE.php文件中,将(glob('*.php')
更改为glob('Plugins/*.php')