使用file_get_contents()函数下载图片:
$url = 'https://example.com/image.jpg';$image = file_get_contents($url);file_put_contents('image.jpg', $image);使用cURL下载图片:$url = 'https://example.com/image.jpg';$ch = curl_init($url);$fp = fopen('image.jpg', 'wb');curl_setopt($ch, CURLOPT_FILE, $fp);curl_setopt($ch, CURLOPT_HEADER, 0);curl_exec($ch);curl_close($ch);fclose($fp);使用copy()函数下载图片:$url = 'https://example.com/image.jpg';copy($url, 'image.jpg');注意:在使用这些方法下载图片时,需要确保服务器具有足够的权限来保存文件。




