Guest User

Untitled

a guest
Jan 22nd, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <?php
  2.  
  3. $request = curl_init();
  4. curl_setopt_array($request, [
  5. CURLOPT_URL => 'https://www.google.com.br',
  6. CURLOPT_RETURNTRANSFER => true,
  7. CURLOPT_SSL_VERIFYPEER => false,
  8. ]);
  9. $response = curl_exec($request);
  10. curl_close($request);
  11.  
  12. echo $response;
Add Comment
Please, Sign In to add comment