在 ubuntu 16.04 中安装 php 5.6.5

在 ubuntu 16.04 中安装 php 5.6.5

我需要帮助在我的 ubuntu 16.04 中为我的 Magento 2.1 网站安装 php 5.6.5。

我尝试通过以下命令安装 php:

sudo apt-get -y update
sudo add-apt-repository ppa:ondrej/php
sudo apt-get -y update
apt-get -y install php5.6 php5.6-mcrypt php5.6-mbstring php5.6-curl php5.6-cli php5.6-mysql php5.6-gd php5.6-intl php5.6-xsl php5.6-zip

但当我这样做时,php -v它给了我这个版本:

PHP 5.6.30-12~ubuntu16.04.1+deb.sury.org+1 (cli)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies

有没有办法将 5.6.30 升级到 5.6.5?

谢谢!

答案1

5.6.30 比 5.6.5 新得多。版本号不是十进制数,而是计数器,因此4.11比 更新4.2。PHP 5.6.5 和 5.6.30 之间有 25 个版本。

此外,根据http://devdocs.magento.com/guides/m1x/system-requirements.html,Magento 只需要 PHP 5.4.x 或更新版本,因此原装 Ubuntu 版本就足够了。

相关内容