Advertisement
Guest User

Untitled

a guest
Feb 21st, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?
  2. $ch = curl_init (); // инициализация
  3. curl_setopt ($ch , CURLOPT_URL , "http://whos.amung.us/stats/readers/9xcraha8/");
  4. curl_setopt ($ch , CURLOPT_USERAGENT , "Mozilla/5.0"); // каким браузером будем прикидываться
  5. curl_setopt ($ch , CURLOPT_RETURNTRANSFER , 1 ); // вывод страницы в переменную
  6. $content = curl_exec($ch); // скачиваем страницу
  7. curl_close($ch); // закрываем соединение
  8.  
  9. echo $content;
  10. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement