Last active
September 27, 2019 08:30
-
-
Save pointofpresence/100def450c64f873fd988ef16004d60e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
ini_set('max_execution_time', 0); | |
set_time_limit(0); | |
for($i=0; $i<6000; $i++) { | |
file_put_contents("$i.png", file_get_contents("http://vk.com/images/stickers/$i/256.png")); | |
usleep(500000); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment