Turn off deprecated errors in PHP 5.3

前端 未结 9 1454
天涯浪人
天涯浪人 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:25

    All the previous answers are correct. Since no one have hinted out how to turn off all errors in PHP, I would like to mention it here:

    error_reporting(0); // Turn off warning, deprecated,
                        // notice everything except error
    

    Somebody might find it useful...

提交回复
热议问题