php中file_get_contents()无法获取页面内容时怎么办?

2024-11-20 20:41:52
推荐回答(3个)
回答1:

用逐行获取试一下
function readFileContent($filedir){
$file_hand=fopen($filedir,"r");
$content="";
while (!feof($file_hand)){
$line=fgets($file_hand);
$content.=$line;
}
fclose($file_hand);
return $content;
}

回答2:

如果你使用远程包含文件,请注意你的curl_setopt,对方可能有Cookie之类的东西

回答3:

用wget