I need to save an image from a php URL to my PC.
Let's say I have a page http://example.com/image.php holding a single "flower" image, nothing else. How can I save this image from URL with a new name (using PHP)? Please help.
|
|
|
If you have
Else use cURL:
|
|||||||||||||||
|
|
|||||||||||||||||
|
|
|||||||||||||
|
|
Here you go, the example saves the remote image to image.jpg.
|
|||||||
|
|
I wasn't able to get any of the other solutions to work, but I was able to use wget:
|
|||
|
|
|
Vartec's answer with cURL didn't work for me. It did, with a slight improvement due to my specific problem. e.g., When there is a redirect on the server (like when you are trying to save the facebook profile image) you will need following option set:
The full solution becomes:
|
||||
|
|
Create a folder named images located in the path you are planning to place the php script you are about to create. Make sure it has write rights for everybody or the scripts won't work ( it won't be able to upload the files into the directory). |
|||
|
|
|
||||
|
|
protected by Community♦ Mar 14 '12 at 19:18
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.