Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

php if no imagee exists

<?php
$image_path_filename = '/path/images/donate.jpg';

if (file_exists($image_path_filename)) {
    echo "The file $image_path_filename exists";
} else {
    echo "The file $image_path_filename does not exist";
}
?>
 
PREVIOUS NEXT
Tagged: #php #imagee #exists
ADD COMMENT
Topic
Name
5+7 =