在服务器上使用较新版本的 php

在服务器上使用较新版本的 php

如果 Debian Wheezy 打包的 PHP 版本太旧,而我想运行更新的版本,我有什么选择?除了切换到 Ubuntu 稳定版或运行 Debian Jessie(不适合生产)外,有没有办法只安装新版本的 php 并继续接收它的软件包更新?

答案1

在 ubuntu 下,Ondřej Surý 维护一个 PPA,其中包含始终最新的 PHP 版本以及模块和扩展。希望这会很有用。

https://launchpad.net/~ondrej/+archive/php5

答案2

您应该能够添加最新的包列表。

编辑源列表:

sudo nano /etc/apt/sources.list

将包添加到列表末尾:

deb http://packages.dotdeb.org wheezy-php55 全部
deb-src http://packages.dotdeb.org wheezy-php55 全部

更新系统:

sudo apt-get 更新

参考:http://www.dev-metal.com/setup-latest-version-php-5-5-debian-wheezy-7-07-1-fix-gpg-key-error/

相关内容