RosettaCodeData/Task/Check-that-file-exists/PHP/check-that-file-exists.php
2023-07-01 13:44:08 -04: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';