Skip to content

Instantly share code, notes, and snippets.

@mazhar266
Created April 12, 2012 10:02
Show Gist options
  • Save mazhar266/30d25a48ba061f5e5380 to your computer and use it in GitHub Desktop.
Save mazhar266/30d25a48ba061f5e5380 to your computer and use it in GitHub Desktop.
file_get_contents_curl
<?php
function file_get_contents_curl($url) {
$ch = curl_init();
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
curl_setopt($ch, CURLOPT_URL, $url);
$data = curl_exec($ch);
curl_close($ch);
return $data;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment