この記事では主にリフレクションを使用してプラグインメカニズムを実装する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 でプラグイン コード例を実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。