strict standards php報錯的解決方法:1.在父類別之後定義繼承類別;2、在「setup-config.php」檔案中加入「error_reporting( ~(E_STRICT | E_NOTICE));」。
本文操作環境:Windows7系統,PHP5.3.3版,Dell G3電腦。
如何解決strict standards php封包錯誤問題?
PHP中Strict Standards錯誤解決方法
在PHP5.3.3 安裝wordpress 3.0.1 ,安裝時發生錯誤:
Strict Standards: PHP Strict Standards: Declaration of Walker.....的解決方法:
出現錯誤提示:
Strict Standards: PHP Strict Standards: Declaration of Walker_Page::start_lvl() should be compatible with that of Walker::start_lvl() in E:\Webroot\wordpress\wp-includes\classes.php on line 1199 PHP Strict Standards: Declaration of Walker_Page::end_lvl() should be compatible with that of Walker::end_lvl() in E:\Webroot\wordpress\wp-includes\classes.php on line 1199 PHP Strict ........
錯誤原因:
這是由於php 5.3版本後。要求繼承類別必須在父類別之後定義。否則就會出現Strict Standards: PHP Strict Standards: Declaration of .... should be compatible with that of .... 的錯誤提示。也就是說必須父類別在前,繼承類別在後。
錯誤參考頁面。
bugs點php點net/bug.php?id=46851 (不能發表有連結的網址) 上面清楚地解釋了出現此類錯誤的具體原因。
解決方案:
在wordpress3.0.1 檔案中,找到 wp-admin\setup-config.php 檔案。
在require_once('../wp-includes/compat.php'); 上面加上一句:
error_reporting( ~(E_STRICT | E_NOTICE));
問題解決。
這句話的意思是錯誤報告設定:顯示所有錯誤,但是除了嚴格錯誤檢查或錯誤報告。也就是說PHP5.3.3 不執行嚴格錯誤檢查。也不顯示錯誤提示。跳過嚴格錯誤檢查。
推薦學習:《PHP影片教學》
以上是如何解決strict standards php報錯問題的詳細內容。更多資訊請關注PHP中文網其他相關文章!