php.ini のすべてのエラーをブロックする方法: 1. 「php.ini」構成ファイルを開き、その中の「display_errors」項目を検索します。 2. 「display_errors」項目の値を次のように設定します。 「オフ」: すべての PHP エラー報告をオフにして、すべてのエラーをブロックできます。
このチュートリアルの動作環境: Windows7 システム、PHP7.1 バージョン、DELL G3 コンピューター
PHP のすべてのエラーをシールドします。 .ini メソッド:
php.ini 構成ファイルを開き、その中で display_errors を検索し、display_errors の値を Off に設定して、すべての PHP エラー レポートをオフにします。以下に示すように:
; This directive controls whether or not and where PHP will output errors, ; notices and warnings too. Error output is very useful during development, but ; it could be very dangerous in production environments. Depending on the code ; which is triggering the error, sensitive information could potentially leak ; out of your application such as database usernames and passwords or worse. ; For production environments, we recommend logging errors rather than ; sending them to STDOUT. ; Possible Values: ; Off = Do not display any errors ; stderr = Display errors to STDERR (affects only CGI/CLI binaries!) ; On or stdout = Display errors to STDOUT ; Default Value: On ; Development Value: On ; Production Value: Off ; http://php.net/display-errors display_errors = Off
この方法はすべての PHP ファイルに適用されるため、最も完全な解決策となります。
#拡張知識: エラーをマスクするその他の方法
<?php $link = @mysqli_connect("127.0.0.1", "my_user", "my_password", "my_db") or die('数据库连接失败!'); ?>実行結果は次のとおりです:
数据库连接失败!推奨される学習: 「
PHP ビデオ チュートリアル 」
以上がphp.ini 内のすべてのエラーをブロックする方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。