您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關怎么解決strict standards php報錯問題的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
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 不執行嚴格錯誤檢查。也不顯示錯誤提示。跳過嚴格錯誤檢查。
感謝各位的閱讀!關于“怎么解決strict standards php報錯問題”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。