這篇文章主要介紹了PHP中__autoload和Smarty衝突的解決方法,透過spl_autoload_register註冊__autoload函數的方法來解決__autoload函數再在Smarty無效的問題,需要的朋友可以參考下
一、問題:
最近,在專案中發現,PHP 的__autoload 方法失效了。調試了好久,百思不得其解,查了下資料才知道原來是 Smarty 的原因。新版的 Smarty 改變了autoload的方式。
二、解決方法:
在Smarty 的包含類別檔案後面加上一段程式碼,spl_autoload_register("__autoload");
如下:
<?php define('ROOT_PATH', dirname(__FILE__)); require_once ROOT_PATH . '/includes/smarty/Smarty.class.php'; spl_autoload_register("__autoload"); // 添加这段代码 ?>
總結:以上就是這篇文章的全部內容,希望能對大家的學習有所幫助。
相關推薦:
以上是PHP中__autoload和Smarty衝突的解決方法詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!