Skip to content

Instantly share code, notes, and snippets.

@devluis
Created December 29, 2013 19:59
Show Gist options
  • Save devluis/8174155 to your computer and use it in GitHub Desktop.
Save devluis/8174155 to your computer and use it in GitHub Desktop.
Check if file exist with PHP
<?php
# Check if file exist
if(file_exists("path-to-my-image/my-image.png")){
print 'File exist';
} else {
print 'File does not exist';
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment