亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

類的自動(dòng)加載----

Original 2019-03-22 14:28:29 162
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ù)吧

Release Notes

Popular Entries