php spl_autoload_register

<?php
 
 
function test1(){
    echo 'test1';
}
 
function test2(){
   echo 'test2';
}
 
spl_autoload_register('test1',true,true);
spl_autoload_register('test2',true,true);

 

new D();

?>

test2test1
Fatal error: Class 'D' not found in G:\phpStudy\WWW\mircoweb\mircoweb\wwwroot\Public\cds.php on line 18

posted @ 2021-02-24 16:22  newmiracle宇宙  阅读(58)  评论(0编辑  收藏  举报