gpt4 book ai didi

php - 如何检查 PECL 扩展名是否存在?

转载 作者:可可西里 更新时间:2023-11-01 12:28:32 24 4
gpt4 key购买 nike

如果是否安装了 PECL 扩展,我如何从 PHP 代码中获取?

我想优雅地处理未安装扩展程序的情况。

最佳答案

我认为正常的方法是使用 extension-loaded .

if (!extension_loaded('gd')) {
// If you want to try load the extension at runtime, use this code:
if (!dl('gd.so')) {
exit;
}
}

关于php - 如何检查 PECL 扩展名是否存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16612794/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com