Home >Backend Development >PHP Problem >How to block errors in php

How to block errors in php

Guanhui
GuanhuiOriginal
2020-05-09 17:36:282948browse

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!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Previous article:The meaning of & in phpNext article:The meaning of & in php