strict standards php報錯的解決辦法:1、在父類之后定義繼承類;2、在“setup-config.php”文件中添加“error_reporting( ~(E_STRICT | E_NOTICE));”。
如何解決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 不執行嚴格錯誤檢查。也不顯示錯誤提示。跳過嚴格錯誤檢查。