php自動加載類

<?php

class CalssLoader
{
    public static function loader($classname)
    {
        $class_file = strtolower($classname).".php";
        if (file_exists($class_file)){
            require_once($class_file);
        }
    }
}
// 方法爲靜態方法
spl_autoload_register('CalssLoader::loader');
$test = new Test();

?>
相關文章
相關標籤/搜索