PHP display_errors には、適切かつ詳細な情報を含むエラーと警告のリストを定義するために使用される関数がいくつかあります。 PHP の display_errors は、開発者にトラブルシューティングとデバッグに関する支援を提供します。何らかの理由で PHP に関連するアプリケーションが停止または停止されると、PHP の display_errors の一部として表示する必要がある一連のエラーまたは警告が含まれます。実行時には、display_errors の一部としてさまざまなレベルのエラーが発生します。ドキュメント内で言及されている PHP Display_error 順序は、ドキュメント内に存在する場合、常に「ON」モードである必要があります。
無料ソフトウェア開発コースを始めましょう
Web 開発、プログラミング言語、ソフトウェア テスト、その他
PHP の display_errors には適切な構文はありませんが、それでも、PHP コードの実行時に、特定の形式のコード行のセットをスクリプト内に含める必要があります。コード行は次のように表されます:
ini_set('display_errors', 1); ini_set('display_startup_errors', 1); error_reporting(E_ALL);
どこ、
以下に挙げる例は次のとおりです
This program demonstrates the inclusion of a set of code within the ini file, but it fails as the display error and display startup error does not include parse errors depicting the exact location of the failure within the file and the output as shown.
Code:
<!DOCTYPE html> <html> <body> <?php ini_set('display_errors', 1); ini_set('display_start_up_errors', 1); error_reporting(E_ALL); include("abcd.php"); ?> </body> </html>
Output:
Note: To get the above error displayed in the proper understandable and readable format, then it is very much needed to display errors, including parse errors for which it is needed to make a change in php.ini or pgp-fpm in apache tomcat, i.e. in the working folder of apache tomcat with the following command as part of the configuration file: display_errors = ON.
This program demonstrates other types of errors that can be displayed, not necessarily including the overall PHP display_error functions. But sometimes, these kinds of errors or warnings come up with the developers as execution is almost smooth and should get easily solved.
Code:
<!DOCTYPE html> <html> <body> <?php $z = "Representation_of_Notice_Error."; echo $z; echo $Notice; ?> </body> </html>
Output:
This program demonstrates that the display_error with ini() function is enabled and restarted, as shown in the output. This warning comes into the picture when the display_error is enabled and restarted in the apache tomcat working folder.
Code:
<!DOCTYPE html> <html> <body> <?php for($h_1 = 1; $h_1 <= 8 $h_1++) { echo $h_1; } ?> </body> </html>
Output:
PHP display_error is quite an appropriate functionality as part of PHP and provides aid to programmers by providing them with the ability and flexibility to troubleshoot and debug the application easily. It makes the time consumption of debugging and troubleshooting less. Overall, It is a very efficient approach to use display_errors in PHP to get detailed information for errors and warnings as it helps in many ways.
以上がPHP 表示エラーの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。