Skip to content

Instantly share code, notes, and snippets.

@fer-ri
Forked from BjornW/check-extensions.php
Created January 27, 2014 09:22
Show Gist options
  • Save fer-ri/8645537 to your computer and use it in GitHub Desktop.
Save fer-ri/8645537 to your computer and use it in GitHub Desktop.
<?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