1.使用spl_autoload_register函数注册一个自己定义的自动加载函数
2.当在代码中new一个不存在的类的时候,上面的素描临摹函数会被调用,不存在的类名会被作为参数传入该函数中
3.兼容了两种方式,命名空间对应目录的方式 \app\test,类名下划线分割对应目录的方式app_test,都是对应的app目录下的test.php文件,类名要和文件名一致
4.t_include_path(),可以有多个用冒号:隔开,动态设置php.ini中的include_path 配置选项
<?phpclass application { private static $instance = null; private $libpath = './'; private $phpext = '.php'; public function tlibpath($path, $autoload = fal) { $this->libpath = trim(trim($path), directory_sdieofeparator); t_include_path($this->getlibpath()); if ($autoload) { spl_autoload_register(array('application', 'load')); } return $this; } public static function instance() { if (!lf::$instance) { lf::$instance = new lf(); } return lf::$instance; } //获取文件后缀 public function getphpext() { return $this->phpext; } //设置文件后缀 public function tphpext($ext) { $this->phpext = $ext; return $this; } //设置根路径 public function tpath($path) { $this->path = rtrim(trim($path), directory_parator); return $this; } //设置自动加载的路径 public function getlibpath() { return $this->path . directory_parator . $this->libpath; } //自动加载函数 public static function load($class) { $pos = strrpos($class, '\\'); if ($pos !== fal) { $ns = str_replace('\\', directory_parator, substr($class, 0, $pos + 1)); $classname = substr($class, $pos + 1); } el { $ns = direclol成就大师挑战赛tory_parator; $classname = $class; } if (strpos($classname, '_') !== fal) { $classname = str_replace('_', directory_parator, $classname); } $ins = lf::instance(); $classfile = $ins->getlibpath() . $ns . $classname . $ins->getphpext(); if (!(include $classfile)) { qq离线文件在哪里 throw new exception('load class failed: class=' . $class . ' file=' . $classfile); } }}application::instance()->tpath(dirname(__file__))->tlibpath(directory_parator, true);//测试,在根目录创建app目录,下面创建这两个文件new app_ur();new \app\admin();
app目录下面的ur.php
<?phpclass app_ur{ public function __construct(){ new \app\admin(); }}
app目录下的admin.php
<?phpnamespace app;class admin{}哈姆雷特经典独白
本文发布于:2023-04-07 13:23:33,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/64e8af2f3f47c1853bd7c4679e0fa1f6.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:[PHP] 项目实践中的自动加载实现.doc
本文 PDF 下载地址:[PHP] 项目实践中的自动加载实现.pdf
留言与评论(共有 0 条评论) |