Home  >  Article  >  Backend Development  >  What to do if the php image cannot be displayed due to errors

What to do if the php image cannot be displayed due to errors

藏色散人
藏色散人Original
2020-08-22 09:15:122750browse

The PHP image cannot be displayed due to errors because there is a notice error. The solution is: 1. Turn off the notice error prompt of wamp; 2. Define [$file=";] in the previous step.

What to do if the php image cannot be displayed due to errors

Recommended: "PHP Video Tutorial"

php image cannot be displayed due to an error

(The picture above shows the Firefox browser, and the Google browser displays a cross)

Cause analysis: Because there is a notice error.

$file .= $ff;

The prototype is:

$file = $file.$ff;

The $file in the middle is not defined, and an error will be reported

Solution:

Option 1: Turn off the notice error prompt of wamp.

error_reporting(E_ALL & ~E_NOTICE);

Option 2: In Define $file=";

earlier

The above is the detailed content of What to do if the php image cannot be displayed due to errors. 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:How to remove index.phpNext article:How to remove index.php