How to disable E_STRICT

后端 未结 5 1388
天命终不由人
天命终不由人 2020-12-17 10:15

I need to turn off E_STRICT. I have error_reporting = E_ALL & ~E_STRICT in my php.ini but it seems to be ignored. I tried this in my code:

ini_set(\'erro         


        
5条回答
  •  猫巷女王i
    2020-12-17 10:40

    try this.

    error_reporting(E_ALL ^ E_STRICT);
    

    This will report all errors except E_STRICT

提交回复
热议问题