How to force php to output errors: 1. Modify the content of "php.ini" to "display_errors = On;"; 2. Output the error message to a text file; 3. In "index.php" Add the content "ini_set('display_errors', true);".
Recommendation: "PHP Video Tutorial"
PHP Forced Output Error Message
1. Modify php.ini
1 2 3 |
|
2. PHP file output
1 2 3 4 |
|
The online server turns off the PHP error message. When you need to debug the online code, you can dynamically To enable it, add the following code to index.php
1 2 |
|
Related introduction:
In PHP, the default error handling is very simple. An error message is sent to the browser with the file name, line number, and a message describing the error.
PHP Error Handling
Error handling is an important part when creating scripts and web applications. If your code lacks error detection coding, the program will look unprofessional and open the door to security risks.
Different error handling methods:
Simple "die()" statement
Custom errors and error triggering Device
Error Report
The above is the detailed content of How to force output error in php. For more information, please follow other related articles on the PHP Chinese website!