Advertisement
Guest User

Untitled

a guest
Mar 29th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. $nomedasala = 'nome da sala';
  2.  
  3. $url = 'https://appear.in/' . urlencode($nomedasala);
  4.  
  5. $ch = curl_init();
  6. curl_setopt($ch, CURLOPT_URL, $url);
  7. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  8.  
  9. //Define um User-agent
  10. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 5.1; rv:21.0) Gecko/20100101 Firefox/21.0');
  11.  
  12. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30);
  13. curl_setopt($ch, CURLOPT_TIMEOUT, 30);
  14.  
  15. //Retorna a resposta
  16. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  17.  
  18. //Resposta
  19. $data = curl_exec($ch);
  20.  
  21. //Desliga
  22. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  23. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement