您的位置:首页 > 其它

spl_autoload_register 自动载入

2015-09-14 22:13 423 查看
<?php

spl_autoload_register('autoload1');
spl_autoload_register('autoload2');

test1::test();
test2::test();

function autoload1($class){
include strp(__DIR__).'/'.$class.'.php';
}

function autoload2($class){
include strp(__DIR__).'/'.$class.'.php';
}
function strp($path){
return str_replace('\\', '/', $path);
}

?>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: