我爱水煮鱼有个微信插件,会时不时的退出一些插件的 “插件”,直接下载一个提供的 PHP 文件,上传到插件一个指定的目录即可,插件会自动检测、引入并执行这个文件,研究了下,也想弄一个类似的功能,代码如下:
-
-
-
-
- function Bing_include_all_php( $folder ){
- foreach( glob( "{$folder}/*.php" ) as $filename ) require_once $filename;
- }
使用方法就是直接调用这个函数,第一个参数放上要引入的相对目录即可,还有一种办法可以使用魔术方法__autoload来加载,代码如下:
- set_include_path('aa' . PATH_SEPARATOR . get_include_path());
- function __autoload($className)
- {
-
-
- if (file_exists($className . '.php')) {
- include_once($className . '.php');
- } else {
- exit('no file');
- }
- }
- $a = new Acls();
我们一般使用_autoload自动加载类如下:
- function __autoload($class_name) {
- require_once ($class_name . “class.php”);
- }
- $memo= new Demo();
|