Skip to content

Instantly share code, notes, and snippets.

@loburets
Last active May 23, 2017 06:34
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 loburets/6d721fff5471ac7d2161 to your computer and use it in GitHub Desktop.
Save loburets/6d721fff5471ac7d2161 to your computer and use it in GitHub Desktop.
check imagic
<?php
if (extension_loaded('imagick')) {
echo 'imagick is installed <br>';
} else {
echo 'imagick is not installed <br>';
}
if(class_exists("Imagick") ) {
echo 'class imagick is found <br>';
} else {
echo 'class imagick not found <br>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment