Advertisement
Guest User

Untitled

a guest
Jan 24th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. header('Content-type: text/html; charset=utf-8');
  2. $ch = curl_init("http://stackoverflow.com/");
  3. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  4. curl_setopt($ch, CURLOPT_HEADER, true);
  5. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  6. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
  7. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  8. $html = curl_exec($ch);
  9. curl_close($ch);
  10. var_dump($html);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement