当前位置: 代码迷 >> 综合 >> spl_autoload_register的自动加载学习
  详细解决方案

spl_autoload_register的自动加载学习

热度:72   发布时间:2023-10-13 11:06:19.0

要加载的类:
 
<?php
/*** @Author: Luhix* @Date:   2017-09-13 18:32:21* @Last Modified by:   Luhix* @Last Modified time: 2017-09-13 18:40:45*/
class Test {public function index() {echo "类的自动加载学习";}
}

php代码:

<?php
/*** @Author: Luhix* @Date:   2017-09-13 18:32:57* @Last Modified by:   Luhix* @Last Modified time: 2017-09-13 18:39:33*/
function  loadPrint($class) {$file = $class . '.class.php';if(is_file($file)) {require "$file";}
}spl_autoload_register('loadPrint');$t = new Test();$t->index();
输出结果: 类的自动加载学习