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
如果遇到什么不懂的地方直接关注公众号留言(本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须在文章页面给出原文连接,否则保留追究法律责任的权利。)
作者:newmiracle
出处:https://www.cnblogs.com/newmiracle/