用逐行获取试一下
function readFileContent($filedir){
$file_hand=fopen($filedir,"r");
$content="";
while (!feof($file_hand)){
$line=fgets($file_hand);
$content.=$line;
}
fclose($file_hand);
return $content;
}
如果你使用远程包含文件,请注意你的curl_setopt,对方可能有Cookie之类的东西
用wget