本文共 459 字,大约阅读时间需要 1 分钟。
配置yum源
追加CentOS 6.5的epel及remi源。
rpm -Uvh
rpm -Uvh
以下是CentOS 7.0的源。
yum install epel-release
rpm -ivh
使用yum list命令查看可安装的包(Packege)。
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
安装PHP5.6
yum源配置好了,下一步就安装PHP5.6。
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
用PHP命令查看版本。
php --version
转载于:https://blog.51cto.com/lzp51/2074066