已经存在__autoload函数的时候,
如果再别的文件中再使用spl_autoload_register方法的话会使得原来的__autoload函数失效
于是需要在使用spl_autoload_register之前加上这样的判断,
if (function_exists('__autoload')) {
spl_autoload_register('__autoload');
}
不同文件中含有__autoload函数,都需要正常使用的方法
2012-1-30 18:43 Monday
+1
20
留下你的看法: