Description:
A download link on the Internet will download a picture when accessed in the browser. How to use a php script to access this link and then save the downloaded picture to a designated local folder?
I tried to use curl and file_get_contents, but failed. Please ask the experts for advice and post a demo to watch and learn
<code>https://clarks.scene7.com/is/image/clarks/download/26085012_A</code>
Description:
A download link on the Internet will download a picture when accessed in the browser. How to use a php script to access this link and then save the downloaded picture to a local designated folder?
I tried to use curl and file_get_contents, but failed. Please ask the experts for advice and post a demo to watch and learn
<code>https://clarks.scene7.com/is/image/clarks/download/26085012_A</code>
PHP needs to enable openssl support to access https sites
Is it a picture? Usually the browser will download it for you.
For example, if you give the resource address to the href attribute of a on the html side, then when you click the link, it will be downloaded directly.
If you don’t use such a mechanism and want to write it yourself, the image can be converted to base64 information and stored locally.