今天使用class_exists检查是否安装yii2官方扩展yiisoft/yii2-imagine类的时候
if(class_exists('Image')){}
这样无论怎么检查都是flash
原来框架里需要使用完整命名空间路径
use yii\imagine\Image; if(class_exists('yii\imagine\Image')){}
这样才能正确检查类是否有效。
要发表评论,您必须先登录。