Definition:
function get_file($path) {}
Disable error reporting
Source code
function get_file($path) {
if ( function_exists('realpath') )
$path = realpath($path);
if ( ! $path || ! @is_file($path) )
return false;
return @file_get_contents($path);
}
9481

February 24, 2011 


No comments yet... Be the first to leave a reply!