当我检查时,yum list php
它只显示比 5.3.10 更旧的 5.3.3。
如何获取并安装较新的 PHP?
(使用CentOS 6.5)
答案1
在您编写时,PHP 5.3.3 是 CentOS 6 的最新 PHP 版本,但请记住,关键错误、安全修复等已向后移植到 CentOS PHP 包上。你可以在这里看看https://serverfault.com/questions/354470/why-are-outdated-packages-installed-by-yum-on-centos-specially-php-5-1-how
如果您需要更新的 PHP(5.4、.5.5、...),您可以使用 Remi 的 RPM 存储库,按照站点说明添加它:http://blog.famillecollet.com/pages/Config-en
答案2
首先在您的服务器上安装 webatic repo:
rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
然后通过以下方式安装 php:
yum install php54w
如果您需要额外的软件包,您可以通过以下方式检查:
yum list all | grep php54
然后搜索该包并安装该包。