搜索

类的自动加载----

原创 2019-03-22 14:28:29 462
摘要:<?phpfunction __autoload($class){    if(file_exists($class.".php")){        require_once($class.".php");    }else{      &n

<?php

function __autoload($class){

    if(file_exists($class.".php")){

        require_once($class.".php");

    }else{

        die("文件不存在!");

    }

}


批改老师:天蓬老师批改时间:2019-03-22 15:15:27
老师总结:你看的是哪个课程, spl_autoload_register()应该是这个函数吧

发布手记

热门词条