PHP にはさまざまなレベルのエラーがありますが、error_reporting は、報告されるエラーの内容を示し、実行時に error_reporting ディレクティブを決定する PHP の関数です。この関数を使用すると、スクリプトの必要な期間 (通常は実行時間) に対して規定のレベルを設定できます。指定された入力に基づいて古いエラー レポート レベルを返します。パラメータが指定されていない場合は現在のレポート レベルを返します。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
パラメータを含む構文は次のとおりです:
構文:
error_reporting(level)
パラメータ:
オプションであり、その入力関数が受け取るパラメーター レベルは 1 つだけです。現在のスクリプトのエラー報告レベルを指定します。受け入れられる値は定数名と値番号です。
注: PHP の将来のバージョンとの互換性を確保するには、名前付き定数を使用することをお勧めします。事前定義された定数がいくつかあり、その説明は次のとおりです。
1. E_Error: これらは、回復できない致命的なランタイム エラーを示し、スクリプトの実行は停止されます。
2. E_警告: これらは致命的ではないエラーであり、スクリプトの実行は続行されます。
3. E_Parse: これは、パーサーによってのみ生成されるコンパイル時の解析エラーを示します。
4. E_ Notice: これは、スクリプトがエラーを示す何かを見つけたことを示す実行時通知を発行しますが、通常のスクリプトの実行中にも発生する可能性があります。
5. E_Core_Error: PHP の初期起動中に、PHP のコアによって生成されるいくつかの致命的なエラーが発生する可能性があります。
6. E_Core_Warning: これは、PHP の初期起動中に発生し、PHP のコアによっても生成される致命的ではないエラーを示します。
7. E_Compile_Error: コンパイル時に発生する致命的なエラーを表示します。これらは、Zend スクリプト エンジンによって生成されます。
8. E_Compile_Warning: 上記と同様に、これらはコンパイル時警告を表示するか、致命的ではないエラーと呼ばれることもあり、Zend スクリプト エンジンによっても生成されます。
9. E_User_Error: ユーザーによって生成されたエラーが表示されます。これは、PHP コードで PHP 関数を使用して生成される点を除けば E_ERROR に似ています。
10. E_All: これは、E_STRICT を除くすべてのエラーと警告をサポートする上記すべての組み合わせのようなものです。
戻り値:
error_reporting 関数は、パラメータが指定されていない場合は、古いレポート レベルまたは現在のエラー レポート レベルを返します。
この関数を使用すると、開発者はさまざまな種類のエラーと、アプリケーションでスローされるそのようなエラーの数を実際に制御できます。この関数は、PHP ini 設定ファイルに存在する error_reporting ディレクティブを設定します。
error_reporting(0);
error_reporting(E_NOTICE);
error_reporting(E_ALL & ~E_NOTICE);
error_reporting(E_ALL); error_reporting(-1); ini_set('error_reporting', E_ALL);
It happens so that during the production phase, error messages are to be hidden from the end-users but this information is needed to be registered for tracing purpose. And the best way to record these errors on the production web application is to write and store in log files.
An easy way to log these is by using the error_log function which takes our parameters as input. The only mandatory parameter here is the first one which contains details about the errors and what all to be logged. Other parameters like the type, destination, and header are non-mandatory here for this function.
error_log("Error found!", 0);
error_log("Error information being emailed!", 1, "[email protected]");
error_log("Write errors to this file", 3, "https://cdn.educba.com/tmp/errorfile.log")<em>;</em>
Given below is the example:
Code:
<?php $a = 1; trigger_error("user warning!", E_USER_WARNING); $a = 2; echo "Value of $a is ${$a}"; error_reporting(0); error_reporting(E_ALL); ?>
Output:
Hence we can say that error_reporting() function in PHP are therefore helpful in cases when there are a lot of problems with the PHP web application and we need to display all of these errors and warnings either for development or debugging purposes. It is a function we can enable different kinds of warnings or error messages and most of them are as discussed above.
以上がPHP の error_reporting()の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。