Turn off deprecated errors in PHP 5.3

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

    this error occur when you change your php version: it's very simple to suppress this error message

    To suppress the DEPRECATED Error message, just add below code into your index.php file:

    init_set('display_errors',False);

提交回复
热议问题