Ubuntu 16.04安装后升级到并面临问题PHP5。
Ubuntu 16.04
PHP5
使用以下命令安装了PHP-5:
sudo add-apt-repository ppa:ondrej/php sudo apt-get update sudo apt-get upgrade sudo apt-get install php5.5 # for PHP 5.5
尝试安装php-curl,但无法正常工作。
sudo apt-get install php5-curl
错误:E:无法找到软件包php5-curl
在Ubuntu 16.04中,默认PHP版本是7.0,如果要使用其他版本,则需要根据PHP版本安装PHP软件包:
sudo apt-get install php7.4-curl
sudo apt-get install php7.3-curl
sudo apt-get install php7.2-curl
sudo apt-get install php7.1-curl
sudo apt-get install php7.0-curl
sudo apt-get install php5.6-curl
sudo apt-get install php5.5-curl