Skip to content

Instantly share code, notes, and snippets.

@JasonMuk
Forked from kylerberry/gist:5057875
Created March 9, 2013 08:08
Show Gist options
  • Save JasonMuk/5123432 to your computer and use it in GitHub Desktop.
Save JasonMuk/5123432 to your computer and use it in GitHub Desktop.
$url = "http://www.example.org/";
$curl = curl_init();
curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($curl, CURLOPT_URL, $url);
$data = curl_exec($curl);
curl_close($curl);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment