RosettaCodeData/Task/Check-that-file-exists/PHP/check-that-file-exists.php

5 lines
284 B
PHP
Raw Permalink Normal View History

2013-04-10 12:38:42 -07:00
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';