PHP 5.3 で非推奨のエラーをオフにする 質問する

PHP 5.3 で非推奨のエラーをオフにする 質問する

私のサーバーは PHP 5.3 を実行しており、WordPress インストールによってこれらのエラーが発生し、session_start() が壊れてしまいます。

Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 647

Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 662

Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 669

Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 676

Deprecated: Assigning the return value of new by reference is deprecated in /home//public_html/hub/wp-settings.php on line 712

これは煩わしいですが、画面上のエラー報告をオフにしたくありません。これらの煩わしい非推奨の警告を無効にするにはどうすればよいでしょうか?

私はWordPress 2.9.2を実行しています。

ベストアンサー1

次の関数を呼び出すことでコード内で実行できます。

error_reporting(E_ERROR | E_WARNING | E_PARSE | E_NOTICE);

または

error_reporting(E_ALL ^ E_DEPRECATED);

おすすめ記事