當我檢查時,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
然後搜索該包並安裝該包。