Home >Backend Development >PHP Problem >How to block errors in php
#How to shield errors in php
1. As long as you add the @ symbol before the error statement, the error message can be shielded;
Example:
@unlink('./image.png');
2. Open the php.ini file and search for "display_errors = on". The default is on, change it to off;
3. Use the function "display_errors" Turn off error display;
# Recommended tutorial: "PHP Tutorial"
The above is the detailed content of How to block errors in php. For more information, please follow other related articles on the PHP Chinese website!