Turn off deprecated errors in PHP 5.3

前端 未结 9 1451
天涯浪人
天涯浪人 2020-12-02 11:32

My server is running PHP 5.3 and my WordPress install is spitting these errors out on me, causing my session_start() to break.

Deprecated: Assigning the re         


        
9条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-02 12:13

    To only get those errors that cause the application to stop working, use:

    error_reporting(E_ALL ^ (E_NOTICE | E_WARNING | E_DEPRECATED));
    

    This will stop showing notices, warnings, and deprecated errors.

提交回复
热议问题