Skip to content

Instantly share code, notes, and snippets.

@javiersantos
Last active August 29, 2015 14:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save javiersantos/575929cc9985d0195fc0 to your computer and use it in GitHub Desktop.
Save javiersantos/575929cc9985d0195fc0 to your computer and use it in GitHub Desktop.
Check if a specific PHP module is installed
<?php
/*
* Check if APC Module is installed
* By Javier Santos
* https://gist.github.com/javiersantos/575929cc9985d0195fc0
*/
if (extension_loaded('apc')) {
echo "true";
} else {
echo "false";
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment