PHP 使用与系统中安装的不同的curl 版本

发布于 2024-09-25 10:27:45 字数 614 浏览 1 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

遇到 2024-10-02 10:27:45

当你说你下载了源代码时,你的意思是你从源代码构建了 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文