我们已经安装了 Curl 7.46.0,但 PHP 仍引用 7.35.0
如何让 PHP 使用最新安装的版本
curl-version 显示正在运行的正确版本,但 php 正在使用以前的版本
谢谢
答案1
参考一下这个答案:https://serverfault.com/a/665802
你还需要更新 libcurl,因为 PHP 使用它而不是 CURL
编辑:您可以使用以下命令更新 libcurl:
sudo apt-get update
sudo apt-get install php5-curl
并重新启动 apache
sudo service apache2 restart
如果需要的话还有 PHP-FPM
sudo service php5-fpm restart