Answers for "how to know if file exists using php"

PHP
13

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";
}
?>
Posted by: Guest on April-14-2020

Code answers related to "how to know if file exists using php"

Browse Popular Code Answers by Language