我的php curl库有问题。
在此网址:http://i.ebayimg.com/00/s/NTAwWDUwMA==/z/7KcAAOxyRhBS3lhE/$_1.JPG?set_id=8800005007
,有一张图片。对于"卷曲",图像不存在。
我很困惑。按照我的方法:
public static function downloadImage($url, $pathToSave = "")
{
$imageUrl = (string)$url;
$ch = curl_init($imageUrl);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
$raw = curl_exec($ch);
curl_close($ch);
if(file_exists($pathToSave))
{
unlink($pathToSave);
}
$fp = fopen($pathToSave, 'x');
fwrite($fp, $raw);
fclose($fp);
return $pathToSave;
}
答案 0 :(得分:2)
这对我有用:
<?php
$c = curl_init();
curl_setopt($c,CURLOPT_URL,"http://i.ebayimg.com/00/s/NTAwWDUwMA==/z/7KcAAOxyRhBS3lhE/$_1.JPG?set_id=8800005007");
curl_setopt($c,CURLOPT_RETURNTRANSFER,true);
$img = curl_exec($c);
file_put_contents('image.jpg',$img);
?>
您的服务器可能配置不同,您需要设置正确的user-agent
,如下所示:
curl_setopt($c,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.91 Safari/537.36 OPR/27.0.1689.54');
...许多网站拒绝提供CURL
本身请求的文件。