Skip to content

Instantly share code, notes, and snippets.

@simonsickle-old
Created April 26, 2014 22:13
Show Gist options
  • Save simonsickle-old/11332579 to your computer and use it in GitHub Desktop.
Save simonsickle-old/11332579 to your computer and use it in GitHub Desktop.
File Existence
<?php
$file = $_GET['f'];
$base_directory = "/home/foo/site_files/";
$final_check = $base_directory.$file;
if (file_exists($final_check)) {
echo "1";
} else {
echo "0";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment