还是有个疑问需要大家解释?
set_inlcude_path('libs/');之后会不会把之前默认的.给覆盖掉呢?
另外,老师的这招也算是学习到了;
function myautoload($class){
set_include_path('class/');
spl_autoload_extension('.class.php');
spl_autoload($class);
}
spl_autoload_register("myautoload");
set_inlcude_path('libs/');之后会不会把之前默认的.给覆盖掉呢?
另外,老师的这招也算是学习到了;
function myautoload($class){
set_include_path('class/');
spl_autoload_extension('.class.php');
spl_autoload($class);
}
spl_autoload_register("myautoload");
2014-11-20
举报