Skip to content

Instantly share code, notes, and snippets.

@emmgfx
Last active December 11, 2015 03:28
Show Gist options
  • Save emmgfx/4538027 to your computer and use it in GitHub Desktop.
Save emmgfx/4538027 to your computer and use it in GitHub Desktop.
Abrir archivo remoto con PHP
<?PHP
$c = curl_init();
curl_setopt($c, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($c, CURLOPT_URL, );
$contents = curl_exec($c);
curl_close($c);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment