spl_autoload_register的使用

class Loader
{
static function loadClass($class)
{
$class = $class.'.php';
if(file_exists($class))
{
include($class);
return;
}
}
}
spl_autoload_register(array('Loader','loadClass'));

posted @ 2015-04-18 20:07  北京流浪儿  阅读(167)  评论(0编辑  收藏  举报