CentOS 6.5下将PHP 5.3升级到5.4或5.5的方法

2017-02-15 13:50:30来源:威易网作者:

本文介绍在CentOS 6.5操作系统下,使用yum将PHP 5.3升级到PHP5.4或者PHP5.5的方法。其实只需要两个命令就可以完成:

本文介绍在CentOS 6.5操作系统下,使用yum将PHP 5.3升级到PHP5.4或者PHP5.5的方法。其实只需要两个命令就可以完成:

1、PHP 5.3升级到5.4

命令如下:

yum remove php php-bcmath php-cli php-common php-devel php-fpm php-gd php-imap php-ldap php-mbstring php-mcrypt php-mysql  php-odbc  php-pdo  php-pear php-pecl-igbinary php-xml php-xmlrpc

rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm

yum install php54w php54w-bcmath php54w-cli php54w-common php54w-devel php54w-fpm  php54w-gd php54w-imap php54w-ldap php54w-mbstring php54w-mcrypt php54w-mysql  php54w-odbc  php54w-pdo  php54w-pear php54w-pecl-igbinary php54w-xml php54w-xmlrpc php54w-opcache php54w-intl php54w-pecl-memcache

2、PHP 5.3升级到5.5

与升级到5.4差别不大,命令是:

yum remove php php-bcmath php-cli php-common php-devel php-fpm  php-gd php-imap php-ldap php-mbstring php-mcrypt php-mysql  php-odbc  php-pdo  php-pear php-pecl-igbinary php-xml php-xmlrpc

rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm

yum install php55w php55w-bcmath php55w-cli php55w-common php55w-devel php55w-fpm  php55w-gd php55w-imap php55w-ldap php55w-mbstring php55w-mcrypt php55w-mysql  php55w-odbc  php55w-pdo  php55w-pear php55w-pecl-igbinary php55w-xml php55w-xmlrpc php55w-opcache php55w-intl php55w-pecl-memcache

这样操作后就完成了升级工作。

关键词:CentOSPHP