我正在尝试安装 pecl_http 作为 php 的扩展。
当我获取配置文件时,phpise 运行正常。当我输入 ./configure 时,我收到以下错误消息;
...
checking openssl/crypto.h usability... yes
checking openssl/crypto.h presence... yes
checking for openssl/crypto.h... yes
checking for gnutls support in libcurl... no
checking for ares support in libcurl... no
checking for bundled SSL CA info... /etc/ssl/certs/ca-certificates.crt
checking for event2/event.h... found in /usr
checking for libevent version, roughly... 2.0.19-stable
checking for ext/raphf support... no
configure: error: Please install pecl/raphf and activate extension=raphf.so in your php.ini
我已将以下行添加到我的 php.ini 文件中
extension=raphf.so
我知道 raphf 已安装并正在加载,因为我已使用以下 php 对其进行了检查:
echo extension_loaded(raphf) ? "raphf loaded" : "raphf not loaded";
回来时它已加载。
为什么./configure 没有看到 raphf?