Jump to content

checking if image file exists in folder?


dflow

Recommended Posts

how can one check if image file exists?

 

for example:

i have ../images/image_1.jpg  pointing to an image

 

now if i want to check if the image image_1.jpg

 

really exists in the images folder

 

if not show white_blank.jpg

 

 

Link to comment
Share on other sites

use the function file_exists()

<?php
$file = '../images/image_1.jpg';
if(file_exists($file))
{
echo "<img src='$file'>";
}else{
echo "<img src='no_image.jpg'>";
}
?>

 

hi this still doesnt work

i get the else result???

Link to comment
Share on other sites

i tried the absolute path and nada !!

 

Then the image does not exist, bad name or you still have the incorrect path. Simple as that.

 

We, sadly, do not know how your server is setup and cannot help you further, you will have to take steps to debug this on your own.

Link to comment
Share on other sites

Post the full path to the image here. Also post the full path to your script.

 

Alternatively you can try this:

 

$file = $_SERVER['DOCUMENT_ROOT'] . '/images/image_1.jpg';

 

And see if that works. That will give the correct absolute path to the image using the server variable.

Link to comment
Share on other sites

Post the full path to the image here. Also post the full path to your script.

 

Alternatively you can try this:

 

$file = $_SERVER['DOCUMENT_ROOT'] . '/images/image_1.jpg';

 

And see if that works. That will give the correct absolute path to the image using the server variable.

 

ok this worked at the end:

<?php
$filename = 'images/citybanner22.jpg';

if (file_exists($filename)) {
echo "<img src=../$filename>";
} else {
echo "The file $filename does not exist";
}
?> 


 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.