Skip to content

Instantly share code, notes, and snippets.

@BjornW
Created May 9, 2012 13:18
Show Gist options
  • Save BjornW/2644423 to your computer and use it in GitHub Desktop.
Save BjornW/2644423 to your computer and use it in GitHub Desktop.
Check which PHP extensions are loaded
<?php
$extensions = get_loaded_extensions();
if( is_array($extensions) && sizeof($extensions) ) {
natcasesort($extensions);
foreach($extensions as $ext) {
echo "$ext <br />";
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment