spl_autoload_register的自动加载学习

来源:互联网 发布:电视下载软件格式 编辑:程序博客网 时间:2024/06/06 00:37

要加载的类:
<?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();
输出结果: 类的自动加载学习
阅读全文
0 0
原创粉丝点击