Answers for "php check if file exists"

PHP
12

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
5

php check if file exists

if (!file_exists('http://mysite.com/images/thumbnail_1286954822.jpg')) {   
$filefound = '0';                         
}
Posted by: Guest on March-24-2020
2

file exist php

if (file_exists($filePath)) {
  // todo acction
}
Posted by: Guest on December-08-2020
1

file exist php

file_exists ( string $filename ) : bool
Posted by: Guest on April-07-2020

Browse Popular Code Answers by Language