Skip to content

Instantly share code, notes, and snippets.

@SmetDenis
Last active August 29, 2015 14:26
Show Gist options
  • Save SmetDenis/c850fb5af52d1d181cec to your computer and use it in GitHub Desktop.
Save SmetDenis/c850fb5af52d1d181cec to your computer and use it in GitHub Desktop.
function openFile($path) {
$contents = null;
if ($realPath = realpath($path)) {
$handle = fopen($path, "rb");
$contents = fread($handle, filesize($path));
fclose($handle);
}
return $contents;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment