How to hide warnings in php: 1. Modify the properties in the php.ini file to "display_errors = Off error_reporting = E_ALL"; 2. Write "error_reporting(0)" at the beginning of the php file.
The operating environment of this article: Windows 7 system, PHP version 7.1, DELL G3 computer
How to hide the warning in php?
How to hide warning prompts in php
Method 1:
Modify the following properties in the php.ini file
display_errors = Off error_reporting = E_ALL
Method 2:
Write at the beginning of the php file:
<?php error_reporting(0); ?>
Recommended learning: "PHP Video Tutorial"
The above is the detailed content of How to hide warning in php. For more information, please follow other related articles on the PHP Chinese website!