我正在使用 cURL 来检索图像,将其重命名并将其存储在本地。无论我是否使用 cURL,图像都以 0 字节文件的形式出现,如下所示:
$strImageUrl = curl_init($strImageUrlSource);
$fp = fopen($strTargetImage, 'wb');
curl_setopt($strImageUrl, CURLOPT_FILE, $fp);
curl_setopt($strImageUrl, CURLOPT_HEADER, 0);
curl_exec($strImageUrl);
curl_close($strImageUrl);
fclose($fp);
或 file_put/get。像这样:
file_put_contents($strImageName, file_get_contents($strImageUrlSource));
我正在检索的 URL 是:
<img src='http://i1.au.reastatic.net/150x112/73fa6c02a92d60a76320d0e89dfbc1a36a6e46c818f74772dec65bae6959c62f/main.jpg' width="150" height="112" alt="Wondecla,可根据要求提供地址" title="Wondecla,可根据要求提供地址" />
我可以手动正确保存此图像。查看 FireFox 中的属性时,它会显示三个条目:
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFgAAABYBAMAAACDuy0HAAAAG1BMVEX+/v4BAQH///8KCgoDAwN/f3/19fWAgID8... etc
data:image/png;base64,iVBORw0KG ... etc.
我在这里做错了什么?