Home>Article>Backend Development> What does warning mean in php?

What does warning mean in php?

青灯夜游
青灯夜游 Original
2022-02-10 10:35:15 4983browse

In PHP, warning means "warning". It is an error level, which is non-fatal and does not affect subsequent code execution. A warning error means that during the execution process, PHP found something unreasonable in the program, thus prompting a warning message, but the program will continue to execute.

What does warning mean in php?

The operating environment of this tutorial: windows7 system, PHP7.1 version, DELL G3 computer

What does warning mean in php?

warning It is an error level of PHP and is non-fatal, that is, after the warning occurs, subsequent scripts can still run normally.

means that during the execution process, PHP finds something unreasonable in the program and prompts a warning message, but the program will continue to execute.

Common reasons for WARNING errors in PHP:

  • Cannot connect to the database

Create a new one PHP document, because the user name and password of the connection data are incorrect, a WARNING warning error will be generated

What does warning mean in php?

WARNING level warning error is non-fatal and does not affect subsequent Code execution

What does warning mean in php?

Use the error_reporting() function to turn off warning warning errors, example:

error_reporting(E_ALL^E_WARNING);

What does warning mean in php?

##After setting, PHP The script will ignore this error and the subsequent code will execute normally

What does warning mean in php?

Recommended study: "

PHP Video Tutorial"

The above is the detailed content of What does warning mean 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