Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我必须运行一个可以选择使用 GD 或 ImageMagick 的函数 - 测试是否安装了 ImageMagick 并返回 true 或 false 的最佳方法 (php) 是什么?
使用if带有函数的条件extension_loaded()来检查您是否已加载扩展
if
extension_loaded()
if(extension_loaded('imagick')) { echo 'Imagick Loaded'; }
文档
只需为已安装的扩展创建一个 if 条件检查
if (!extension_loaded('imagick')) { echo 'imagick not installed'; } else { echo 'imagick installed'; }