Best method for bulk downloading images from website

前端 未结 2 1109
暗喜
暗喜 2021-01-29 01:26

I will download a lot of images (+20.000) from a website to my server and i\'m trying to figure out the best way to do this since there\'s so many images to download.

Cu

2条回答
  •  情歌与酒
    2021-01-29 02:00

    If you have access to shell, you could use WGET, I mean, the main problem with php, if you are executing this code from a browser, is the execution time, it will stop after a few minutes or it can be loading forever and get stucked, but if you have a complete URL and a pattern, as I can see, you can create a file with the URLs, one URL per line, list.txt, for example and then execute

    wget -i list.txt
    

    Check this answer too https://stackoverflow.com/a/14578517/5415074

提交回复
热议问题