Home  >  Article  >  Backend Development  >  How to remove warning prompt in php

How to remove warning prompt in php

王林
王林Original
2020-08-17 14:47:544864browse

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 remove warning prompt in php

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!

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