Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Code tho get all profile images of Orkut
- set_time_limit (3600);
- $limit = 100;
- for($i = 0; $i < $limit; $i++){
- $url_origin = "http://img2.orkut.com/images/small/0/" . $i . "/of.jpg"; // to get others image sizes replace "small" for tiny, medium...
- $file_destination = "images/". $i .".jpg";
- $ch = curl_init($url_origin);
- curl_setopt($ch, CURLOPT_HEADER, false);
- curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
- curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
- $bImg = curl_exec($ch);
- curl_close($ch);
- $fp = fopen($file_destination, 'w'); //create file
- fwrite($fp, $bImg); //record binary of image
- fclose($fp); //close file
- Echo "Copied file: <a href=images/". $i . ".jpg>" . $i . ".jpg </a></br>";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement