RosettaCodeData/Task/Check-that-file-exists/PHP/check-that-file-exists.php
Ingy döt Net 86c034bb8b new files
2013-04-10 12:38:42 -07:00

4 lines
284 B
PHP

if (file_exists('input.txt')) echo 'input.txt is here right by my side';
if (file_exists('docs' )) echo 'docs is here with me';
if (file_exists('/input.txt')) echo 'input.txt is over there in the root dir';
if (file_exists('/docs' )) echo 'docs is over there in the root dir';