本文介绍了在Debian 9中安装php5.6的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在 Debian 9

推荐答案

您可以使用OndřejSurý发布的软件包,请参见 deb.sury.org

You can use the packages released by Ondřej Surý , see deb.sury.org

打开终端并运行以下命令:

Open the terminal and run the following command:

apt-get install apt-transport-https lsb-release ca-certificates

获取gpg密钥:

wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg

或:

curl https://packages.sury.org/php/apt.gpg | apt-key add -

将新的存储库添加到您的源中:

Add the new repository to your sources:

echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list

安装PHP5.6

apt-get update
apt-get install php5.6

要在PHP版本之间切换:

To switch between PHP versions:

update-alternatives --config php

示例输出:

----------------------------------------------------------
* 0            /usr/bin/php7.0   70        mode automatique
  1            /usr/bin/php5.6   56        mode manuel
  2            /usr/bin/php7.0   70        mode manuel

这篇关于在Debian 9中安装php5.6的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-31 05:52