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