Skip to content

Instantly share code, notes, and snippets.

@dannevang
Created June 26, 2013 13:40
Show Gist options
  • Save dannevang/5867446 to your computer and use it in GitHub Desktop.
Save dannevang/5867446 to your computer and use it in GitHub Desktop.
PHP. Check if a file exists in another server.
<?php
function fileExists($path){
return (@fopen($path,"r")==true);
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment