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:你看的是哪個(gè)課程, spl_autoload_register()應(yīng)該是這個(gè)函數(shù)吧