Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <?php
  2. function curl_get_contents($url)
  3. {
  4. $ch = curl_init();
  5. $timeout = 5;
  6.  
  7. curl_setopt($ch, CURLOPT_URL, $url);
  8. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  9. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  10. curl_setopt($ch, CURLOPT_HEADER, false);
  11. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  12.  
  13. $data = curl_exec($ch);
  14.  
  15. curl_close($ch);
  16.  
  17. return $data;
  18. }
  19.  
  20. $url="http://paravey.go2cloud.org/aff_l?offer_id=12&aff_id=1000";
  21. $contents = curl_get_contents($url);
  22. echo $contents;
  23. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement