在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
详细出处参考:http://www.ogeek.net/article/29624.htm 又是框架冲突导致__autoload()失效,用spl_autoload_register()重构一下,问题解决 __autoload()的用法就不再说了,以前已经在我的WEB开发笔记中说过。PHP __autoload函数(自动载入类文件)的使用方法, 原文地址:http://www.ogeek.net/article/29625.htm 。 <?php class abc{ function __construct() { echo 'www.chhua.com; } } ?> load.php <?php class LOAD { static function loadClass($class_name) { $filename = $class_name.".class.php"; if (is_file($filename)) return include_once $filename; } } /** * 设置对象的自动载入 * spl_autoload_register — Register given function as __autoload() implementation */ spl_autoload_register(array('LOAD', 'loadClass')); $a = new Test();//实现自动加载,很多框架就用这种方法自动加载类 ?>
|
2022-08-12
2022-08-18
2022-08-17
2022-11-06
2022-08-17
请发表评论