xxxxxxxxxx
$filePath = '/path/to/file.ext';
if (file_exists($filePath)) {
echo "The file exists.";
} else {
echo "The file does not exist.";
}
xxxxxxxxxx
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>
xxxxxxxxxx
if (!file_exists('http://mysite.com/images/thumbnail_1286954822.jpg')) {
$filefound = '0';
}
xxxxxxxxxx
<?php
$filename = '/path/to/foo.txt';
if (file_exists($filename)) {
echo "The file $filename exists";
} else {
echo "The file $filename does not exist";
}
?>