首頁  >  文章  >  後端開發  >  PHP 顯示錯誤

PHP 顯示錯誤

PHPz
PHPz原創
2024-08-29 13:06:25812瀏覽

PHP display_errors 有一些函數用於定義錯誤和警告列表以及適當且詳細的資訊。 PHP display_errors 為開發人員提供故障排除和除錯的協助。任何與 PHP 相關的應用程式因某種原因而停止,都會包含一些需要作為 PHP display_errors 的一部分顯示的錯誤或警告。執行時,display_errors 中涉及不同層級的錯誤。文件中提到的 PHP Display_error 指令在文件中出現時應始終處於「ON」模式。

開始您的免費軟體開發課程

網頁開發、程式語言、軟體測試及其他

文法

PHP display_errors 沒有正確的語法,但是在執行 PHP 程式碼時,需要在腳本中包含一些具有特定格式的程式碼行。該行程式碼表示如下:

ini_set('display_errors', 1);
ini_set('display_startup_errors', 1);
error_reporting(E_ALL);

哪裡,

  • ini_set(): 這個函數主要會嘗試覆蓋最初在 ini 檔案中找到的配置。
  • display_errors: 它是決定是否需要確定錯誤或對最終使用者隱藏的指令之一。
  • display_startup_errors: 這是另一個指令,其行為也與 display_errors 類似,不同之處在於顯示啟動錯誤將負責在螢幕啟動時取得所有錯誤。
  • error_reporting():錯誤報告函數就像一個過濾器,主要負責過濾掉顯示所需的錯誤。
  • E-ALL:這是開發者最推薦的指令,因為它為開發者提供了更容易理解和可讀的格式。

display_errors 在 PHP 中如何運作?

  • PHP 對於 display_errors 具有重要意義,因為它使程式設計師能夠排除故障並提供正確的可讀和可理解的程式碼格式。
  • 它允許程式設計師使用它提供的有關錯誤和警告的詳細資訊集進行偵錯。
  • 在 PHP 中實作顯示各種錯誤的最簡單方法是在執行和編譯時在 ini 檔案中包含一組語句或程式碼。
  • 透過在ini檔案中包含語法中提到的一些程式碼行,有助於實現執行時錯誤的詳細顯示。
  • 每個傳遞給函數參數的函數都有自己的意義。
  • Ini() 函數總是嘗試覆蓋 PHP ini 檔案中存在的當前配置,並且有兩個指令虔誠地使用 ini 函數。這兩個指令都有自己的作用。
  • 顯示錯誤指令用於非強制需要顯示錯誤的情況,且在開發時,應關閉display_error指令;否則會造成障礙。
  • 相反,display_startup_error 具有不同的意義,因為它僅在程式碼執行從啟動序列開始時使用,因為 Display error 指令從不參與相同的操作。它總是利用 ini 函數來提供全部功能。
  • 此外,還涉及與這兩個指令相關的一些更有趣的特徵;也就是說,它們將無法顯示任何類型的解析錯誤。假設如果程式設計師忘記放置分號或錯過放置花括號,那麼在這種情況下,這對程式設計師來說將是一個問題,正如上面提到的原因。
  • 有時,在即時環境或測試環境中,使用已經提到的指令進行測試變得困難;那麼,在這種情況下,需要使用一些額外的指令,需要打開或關閉這些指令來處理瀏覽器的程式碼實現。
  • 上述場景的解決方案是使用以下命令將 display_error 指令設為 ON,並將其包含在 ini 檔案中,即 display_error = on。然後透過恢復apache tomcat工作資料夾中的ini檔案來重新啟動apache tomcat資料夾。
  • 這樣,ini_set() 函數將合併所有主要指令作為參數,並在執行程式碼時相應地傳遞它們。

範例

以下是下面提到的範例

Example #1

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:

PHP 顯示錯誤

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.

Example #2

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:

PHP 顯示錯誤

Example #3

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 顯示錯誤

Conclusion

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中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
上一篇:PHP 日誌錯誤下一篇:PHP 日誌錯誤