Home > Article > Backend Development > How to remove warning prompt in php
php method to remove the warning prompt: 1. Open the php.ini configuration file; 2. Edit the configuration [display_errors = Off]; 3. Edit the configuration [error_reporting = E_ALL].
How to turn off PHP’s warning prompt:
(Recommended tutorial: php graphic tutorial)
Method 1:
Open the php.ini file and modify the following properties
display_errors = Off error_reporting = E_ALL
(Video tutorial recommended: php video tutorial)
Method Two:
Write at the beginning of the php file:
<?php error_reporting(0); ?>
The above is the detailed content of How to remove warning prompt in php. For more information, please follow other related articles on the PHP Chinese website!