Skip to content

Instantly share code, notes, and snippets.

@taisang1996
Last active June 13, 2016 10:52
Show Gist options
  • Save taisang1996/4e606c9c2676a7ae1f6409c62daa599d to your computer and use it in GitHub Desktop.
Save taisang1996/4e606c9c2676a7ae1f6409c62daa599d to your computer and use it in GitHub Desktop.
<?php
$url = "http://vnreview.vn";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_REFERER, $url);
curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2228.0 Safari/537.36");
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_TIMEOUT, 10);
$result = curl_exec($ch);
curl_close($ch);
print_r($result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment