Advertisement
Guest User

Untitled

a guest
Mar 4th, 2015
181
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. $txt="http://rus-yurist.ru/images/plashka_1.png
  2. http://rus-yurist.ru/images/plashka_2.png
  3. http://rus-yurist.ru/images/plashka_3.png";
  4.  
  5. $a1=explode("n",$txt);
  6. $a1=array_unique($a1);
  7.  
  8. foreach($a1 as $url) {
  9. $ch = curl_init($url);
  10. $path_parts = pathinfo($url);
  11. $path = 'docs/'.$path_parts['basename'];
  12. copy($url, $path);
  13. // file_put_contents($path, file_get_contents($url)); /* not works too, only last file
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement