Verify ImageMagick installation

前端 未结 10 1517
一个人的身影
一个人的身影 2020-11-29 01:16

My web hosting said ImageMagic has been pre-installed on the server. I did a quick search for \"ImageMagick\" in the output of phpinfo() and I found nothing. I can\'t SSH in

10条回答
  •  清酒与你
    2020-11-29 01:28

    You can easily check for the Imagick class in PHP.

    if( class_exists("Imagick") )
    {
        //Imagick is installed
    }
    

提交回复
热议问题