Keltere

Untitled

May 20th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. function getHtml($url){
  2. $curl_handle=curl_init();
  3. curl_setopt($curl_handle, CURLOPT_URL,$url);
  4. curl_setopt($curl_handle, CURLOPT_HEADER, false);
  5. curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, true);
  6. curl_setopt($curl_handle, CURLOPT_FOLLOWLOCATION, false);
  7. curl_setopt($curl_handle, CURLOPT_ENCODING, '');
  8. curl_setopt($curl_handle, CURLOPT_IPRESOLVE, CURL_IPRESOLVE_V4 );
  9. curl_setopt($curl_handle, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; rv:1.7.3) Gecko/20041001 Firefox/0.10.1");
  10. $html = curl_exec($curl_handle);
  11. curl_close($curl_handle);
  12. return $html;
  13. }
Add Comment
Please, Sign In to add comment