我正在尝试使用 cURL 获取此图像:http: //images.egypt.souq.com/media/item/2013/02/27/49/97/32/8/item_L_4997328_1650476.jpg
使用此代码:
public static function fetchUrl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_TIMEOUT, 50);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$data = curl_exec($ch); //get curl response
curl_close($ch);
return $data;
}
此代码适用于除上述图像之外的任何图像(我至少尝试过),它在消耗所有超时的 50 秒后返回 false,
有人知道为什么吗?