首页 > 后端开发 > php教程 > 解决 PHP 中的 __autoload 和 Smarty 冲突_PHP教程

解决 PHP 中的 __autoload 和 Smarty 冲突_PHP教程

WBOY
发布: 2016-07-13 17:47:53
原创
945 人浏览过

最近,在项目中发现,PHP 的 __autoload 方法失效了。调试了好久,百思不得其解,查了下资料才知道原来是 Smarty 的原因。新版的 Smarty 改变了autoload的方式。


        解决方法是:在 Smarty 的包含类文件后加一段代码,spl_autoload_register("__autoload");

        如下:

    define('ROOT_PATH', dirname(__FILE__)); 
    require_once ROOT_PATH . '/includes/smarty/Smarty.class.php'; 
    spl_autoload_register("__autoload");  // 添加这段代码  
?> 

 

摘自 Lee.的专栏

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/478466.htmlTechArticle最近,在项目中发现,PHP 的 __autoload 方法失效了。调试了好久,百思不得其解,查了下资料才知道原来是 Smarty 的原因。新版的 Smarty 改变...
来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板