PHP 使用与系统中安装的不同的curl 版本
我正在使用 CentOS 发行版,我需要安装 7.15.5 之后的更新版本。我无法使用 yum 升级到现在,所以我下载源代码,编译和安装没有问题。
[root ~]# curl -V
curl 7.21.1 (i686-pc-linux-gnu) libcurl/7.21.1 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
Protocols: dict file ftp ftps http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: IDN Largefile NTLM SSL libz
但是,当我显示 phpinfo() 时,我看到:
cURL support enabled
cURL Information libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
我重新启动了 apache,甚至尝试用 /usr/local/bin/curl 中新版本的符号链接替换 /usr/bin/curl 中的旧卷曲。仍然不知道如何升级 PHP 使用的curl。
I am using CentOS distribution and I need to install newer version then 7.15.5. I couldn't upgrade to nower using yum, so I download sources, compile and install without problem.
[root ~]# curl -V
curl 7.21.1 (i686-pc-linux-gnu) libcurl/7.21.1 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
Protocols: dict file ftp ftps http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftp
Features: IDN Largefile NTLM SSL libz
However, when I display phpinfo() I see:
cURL support enabled
cURL Information libcurl/7.15.5 OpenSSL/0.9.8b zlib/1.2.3 libidn/0.6.5
I restarted apache, tried even replacing old curl in /usr/bin/curl with symlink to newer version in /usr/local/bin/curl. Still no clue how to upgrade curl used by PHP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当你说你下载了源代码时,你的意思是你从源代码构建了 php 源还是curl?您需要编译 php,并将
with-curl=/usr/local/bin/curl
选项设置为要集成的 libcurl 版本。When you say you downloaded sources, do you mean you built php sources or curl from source? You need to compile php with
with-curl=/usr/local/bin/curl
option set to the version of libcurl you want to integrate.