Advertisement
GuiEnrik

Orkut Photos

Dec 26th, 2011
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.74 KB | None | 0 0
  1. <?php
  2.  
  3. // Code tho get all profile images of Orkut
  4.  
  5. set_time_limit (3600);
  6. $limit = 100;
  7.  
  8. for($i = 0; $i < $limit; $i++){
  9.  
  10. $url_origin = "http://img2.orkut.com/images/small/0/" . $i . "/of.jpg"; // to get others image sizes replace "small" for tiny, medium...
  11. $file_destination = "images/". $i .".jpg";
  12.  
  13.     $ch = curl_init($url_origin);
  14.     curl_setopt($ch, CURLOPT_HEADER, false);
  15.     curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  16.     curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  17.     $bImg = curl_exec($ch);
  18.     curl_close($ch);
  19.     $fp = fopen($file_destination, 'w'); //create file
  20.     fwrite($fp, $bImg); //record binary of image
  21.     fclose($fp); //close file
  22.     Echo "Copied file: <a href=images/". $i . ".jpg>" . $i . ".jpg </a></br>";
  23. }
  24. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement