Skip to content

Instantly share code, notes, and snippets.

@juanramon
Created April 15, 2011 11:16
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save juanramon/921538 to your computer and use it in GitHub Desktop.
Save juanramon/921538 to your computer and use it in GitHub Desktop.
Check if allow_url_fopen is enabled
<?php
if( ini_get('allow_url_fopen') ) {
die('allow_url_fopen is enabled. file_get_contents should work well');
} else {
die('allow_url_fopen is disabled. file_get_contents would not work');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment