前端屌丝

导航

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();

?>

  

posted on 2013-10-17 14:44  前端屌丝  阅读(215)  评论(0编辑  收藏  举报