Source Code:
(back to article)
<?php $filename = 'myfile.txt'; if (file_exists($filename)) { echo "The file $filename exists"; } else { echo "The file $filename does not exist"; }
Result:
Report an issue