Guest User

Untitled

a guest
Jun 21st, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. <?php
  2. function downloadFile($url)
  3. {
  4. $useragent="Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.12) Gecko/20101026 Firefox/3.6.12";
  5. $timeout = 30;
  6. $ch = curl_init();
  7. curl_setopt($ch, CURLOPT_USERAGENT, $useragent);
  8. curl_setopt($ch, CURLOPT_URL, $url);
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  10. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  11. $data = curl_exec($ch);
  12. curl_close($ch);
  13.  
  14. return $data;
  15. }
Add Comment
Please, Sign In to add comment