PHP の error_reporting()

王林
リリース: 2024-08-29 13:06:15
オリジナル
283 人が閲覧しました

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 での error_reporting の仕組み

この関数を使用すると、開発者はさまざまな種類のエラーと、アプリケーションでスローされるそのようなエラーの数を実際に制御できます。この関数は、PHP ini 設定ファイルに存在する error_reporting ディレクティブを設定します。

error_reporting(0);
ログイン後にコピー
  • When 0 is passed to the error reporting function it removes all warnings, errors, parse related messages and notices, if any. Instead of having to include this line in each of the PHP code files, it is practical to have it added and to turn off these report messages in the ini file present or in the .htaccess.
error_reporting(E_NOTICE);
ログイン後にコピー
  • In PHP the variables can be used even when not declared. But this practice is not feasible as the undeclared variables may cause application related issues if it is used in conditional statements and loops. This may also take place because of the spelling mismatch between the declared variables and of that being used for conditions and loops. When this E_NOTICE will be passed into the error_reporting function, only then these undeclared variables will be shown in the web application.
error_reporting(E_ALL & ~E_NOTICE);
ログイン後にコピー
  • This error reporting function helps to filter out the errors which can be displayed. The “~” character here means the “not/no” and hence ~E_NOTICE here means to not show any notices. Here the “&” character represents “true for all” whereas “|” means as long as one of the parameters is true. They are exactly similar to the functions AND and OR in PHP.
error_reporting(E_ALL);
error_reporting(-1);
ini_set('error_reporting', E_ALL);
ログイン後にコピー
  • All of the above lines serve the same purpose i.e. show all the errors. E_ALL is the most widely used function among all others by developers to display error messages as it is more comprehensible and intelligible.

Error Logging in PHP using error_log() Function

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);
ログイン後にコピー
  • The type parameter will be set to 0 by default if not given, and the log information will be appended at the end of the log file generated in the webserver.
error_log("Error information being emailed!", 1, "[email protected]");
ログイン後にコピー
  • The type parameter here is 1 will email this log specified in the 3rd parameter which is the email id. For this to work, the PHP ini file must be having a correct SMTP configuration to send out emails. Some of the parameters required for these include host, encryption type, port, password and username.
error_log("Write errors to this file", 3, "https://cdn.educba.com/tmp/errorfile.log")<em>;</em>
ログイン後にコピー
  • The same error logs can also be written down to the required file whose path will be given in the third parameter. Make sure the given path has all required permissions.

Example of error_reporting() in PHP

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:

PHP の error_reporting()

Advantages of using error_reporting function in PHP

  • error_reporting is good for debugging purposes and for developing web application.
  • Each and every error can be logged and fixed as soon as it happens using this function.
  • To not show it to the end-user, make sure you redirect the errors to a log file while releasing it.

Conclusion

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 サイトの他の関連記事を参照してください。

関連ラベル:
php
ソース:php
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!