I need to save an image taken from a third party url and save it with a different name. Can someone please let me know how to do it with an example?
if allow_url_fopen set to true:
allow_url_fopen
$url = 'http://example.com/image.php'; $img = '/my/folder/flower.gif'; file_put_contents($img, file_get_contents($url));
Else use 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);
It looks like you're new here. If you want to get involved, click one of these buttons!
Comments
if
allow_url_fopen
set to true:Else use cURL: