Definition:
function get_file($path) {}
Parameters
- $path
Source code
function get_file($path) {
if ( function_exists('realpath') )
$path = realpath($path);
if ( ! $path || ! @is_file($path) )
return '';
return @file_get_contents($path);
}
1390

February 12, 2011 


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