gpt4 book ai didi

php - 使用 CURL 保存图像,有时会保存空白图像

转载 作者:行者123 更新时间:2023-12-04 00:00:31 25 4
gpt4 key购买 nike

我有这个脚本,可以从特定网站获取图像链接,因此我创建了一个函数,用于传递图像链接和网站的源名称,这将用于将图像放置在相应的目录中。

但是有时这个函数不能正常工作,它会随机保存图像,但是图像基本上是空的,因此它只会保存一个空文件,并使用 $img_link 中的原始文件名,但无法显示实际图像.

在那种情况下,如果发生这种情况,我会尝试返回默认图像路径。但它没有这样做,并返回一个空图像,如上文所述。

function saveIMG($img_link, $source){

$name = basename($img_link); // gets basename of the file image.jpg
$name = date("Y-m-d_H_i_s_") . mt_rand(1,999) . "_" .$name;
if (!empty($img_link)){
$ch = curl_init($img_link);
$fp = fopen("images/$source/$name", 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.13) Gecko/20080311 Firefox/2.0.0.13');
curl_setopt($ch, CURLOPT_HEADER, 0);

$result = curl_exec($ch);
curl_close($ch);
fclose($fp);

$name ="images/$source/$name";
return $name;
}
else {
$name = "images/news_default.jpg";
return $name;
}
}

您有什么更好的主意吗?当无法检索图像时如何处理?

谢谢

最佳答案

file_get_content始终是 cURL 的一个很好的替代品。

但是,如果您想要/必须使用 cURL:

$ch = curl_init("www.path.com/to/image.jpg");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, TRUE); //Return the transfer so it can be saved to a variable
$result = curl_exec($ch); //Save the transfer to a variable
if($result === FALSE){//curl_exec will return false on failure even with returntransfer on
//return? die? redirect? your choice.
}
$fp = fopen("name.jpg", 'w'); //Create the empty image. Extension does matter.
fwrite($fp, $result); //Write said contents to the above created file
fclose($fp); //Properly close the file

就是这样。对其进行了测试,它有效。

关于php - 使用 CURL 保存图像,有时会保存空白图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29516856/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com