1

I am trying to disable Strict Standards from showing up on my screen.

I took a look at my php.ini files and see these lines:

; error_reporting
;   Default Value: E_ALL & ~E_NOTICE & ~E_STRICT & ~E_DEPRECATED
;   Development Value: E_ALL
;   Production Value: E_ALL & ~E_DEPRECATED & ~E_STRICT

What do these lines mean and how do I disable the Strict Standards error from showing up?

I also see this line

error_reporting = E_ALL | E_STRICT
4

1 に答える 1

2

この行を変更します

error_reporting = E_ALL | E_STRICT

生産への 生産価値

error_reporting = E_ALL & ~E_DEPRECATED & ~E_STRICT

エラーをログに記録することはできますが、表示しないようにする display_errors 設定を変更することもできます。

display_errors = Off
于 2013-07-05T17:50:02.673 に答える