php to check file exist or not code example
Example 1: php file exist
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
Example 2: file exist php
file_exists ( string $filename ) : bool