Toggle navigation
Home
Latest pastes
FAQ
Random
BitBin is shutting down!
Register
Login
PHP - Check if a file exists
SUBMITTED BY:
efbee
DATE:
Oct. 3, 2016, 3:59 p.m.
FORMAT:
PHP
SIZE:
190 Bytes
Raw
Download
Tweet
HITS:
782
Go to comments
Report
Check a file exists
<?php
$filename
=
'test.csv'
;
if
(
file_exists
(
$filename
))
{
print
"The file
$filename
exists"
;
}
else
{
print
"The file
$filename
does not exist"
;
}
?>
Please enable JavaScript to view the
comments powered by Disqus.
comments powered by
Disqus