abstract:<?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("文件不存在!");
}
}
Correcting teacher:天蓬老师Correction time:2019-03-22 15:15:27
Teacher's summary:你看的是哪个课程, spl_autoload_register()应该是这个函数吧