public static function GetFileContent($strpath){
clearstatcache();
if( !@file_exists($strpath) || !@is_readable($strpath) )return false;
clearstatcache();
return @file_get_contents($strpath);
/*
if(!$fp = @fopen($strpath, 'r')) return false;
$contents = "";
while (!feof($fp)) {
$contents .= fread($fp, 1024);
}
fclose($fp);
*/
}
读取指定路径的文件内容。

