小编典典

从 PHP URL 保存图像

all

我需要将图像从 PHP URL 保存到我的
PC。假设我有一个页面,http://example.com/image.php,只有一个“花”图像,没有别的。如何使用新名称(使用 PHP)从 URL
中保存此图像?


阅读 93

收藏
2022-03-21

共1个答案

小编典典

如果您已allow_url_fopen设置为true

$url = 'http://example.com/image.php';
$img = '/my/folder/flower.gif';
file_put_contents($img, file_get_contents($url));

否则使用cURL

$ch = curl_init('http://example.com/image.php');
$fp = fopen('/my/folder/flower.gif', 'wb');
curl_setopt($ch, CURLOPT_FILE, $fp);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_exec($ch);
curl_close($ch);
fclose($fp);
2022-03-21