testing - ImageMagick Installed, True or False, How to Check? PHP -
this question has answer here:
- verify imagemagick installation 7 answers
i have run function has option use gd or imagemagick - best way (php) test if imagemagick installed, , return true or false?
use if
condition extension_loaded()
function check whether have extension loaded
if(extension_loaded('imagick')) { echo 'imagick loaded'; }
Comments
Post a Comment