使用 apt-get 将 php 5.5.* 升级到 php 5.6.*

2022-01-24 00:00:00 debian php apt-get

我安装了一个新的本地服务器,当我使用 apt-get install php5 安装 php5 包时,它得到了 5.6 版.

I installed a new local server, when I installed php5 package with apt-get install php5 it got the version 5.6.

我的生产服务器仍然使用 php 5.5,我想像在我的开发环境中一样将其升级到 php 5.6.

My production server is still with php 5.5 and I would like to upgrade it to php 5.6 like in my dev environment.

我可以使用 apt-get 轻松完成吗?告诉 apt-get 切换到分支 5.6 吗?

Can I do it easily using apt-get ? tell to apt-get to switch to the branch 5.6 ?

谢谢

推荐答案

按照显示的顺序输入以下命令:

Enter the following commands in the order shown:

apt-get -y update
add-apt-repository ppa:ondrej/php
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

输入以下命令验证 PHP 5.6 是否正确安装:

Enter the following command to verify PHP 5.6 installed properly:

php -v

以下是指示已安装 PHP 5.6 的示例响应:

Following is a sample response that indicates PHP 5.6 is installed:

PHP 5.6.22-4+deb.sury.org~trusty+1 (cli)
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies

完成+

相关文章