strict standards php報(bào)錯(cuò)的解決辦法:1、在父類(lèi)之后定義繼承類(lèi);2、在“setup-config.php”文件中添加“error_reporting( ~(e_strict | e_notice));”。
本文操作環(huán)境:windows7系統(tǒng),php5.3.3版,dell g3電腦。
如何解決strict standards php報(bào)錯(cuò)問(wèn)題?
php中strict standards錯(cuò)誤解決方法
在php5.3.3 中安裝wordpress 3.0.1 ,在安裝時(shí)出現(xiàn)錯(cuò)誤:
strict standards: php strict standards: declaration of walker…..的解決辦法:
出現(xiàn)錯(cuò)誤提示:
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 ……..
錯(cuò)誤原因:
這是由于 php 5.3版本后。要求繼承類(lèi)必須在父類(lèi)之后定義。否則就會(huì)出現(xiàn)strict standards: php strict standards: declaration of …. should be compatible with that of …. 的錯(cuò)誤提示。也就是說(shuō)必須父類(lèi)在前,繼承類(lèi)在后。
錯(cuò)誤參考頁(yè)面。
bugs點(diǎn)php點(diǎn)net/bug.php?id=46851 (不能發(fā)表帶鏈接的網(wǎng)址) 上面清楚地解釋了出現(xiàn)此類(lèi)錯(cuò)誤的具體原因。
解決辦法:
在wordpress3.0.1 文件中,找到 wp-admin\\\\setup-config.php 文件。
在require_once('../wp-includes/compat.php'); 上面添加一句:
error_reporting( ~(e_strict | e_notice));
問(wèn)題解決。
這句話的意思是錯(cuò)誤報(bào)告設(shè)置:顯示所有錯(cuò)誤,但是除了嚴(yán)格錯(cuò)檢查或者錯(cuò)誤報(bào)告。也就是說(shuō)php5.3.3 不執(zhí)行嚴(yán)格錯(cuò)誤檢查。也不顯示錯(cuò)誤提示。跳過(guò)嚴(yán)格錯(cuò)誤檢查。
推薦學(xué)習(xí):《php視頻教程》