yum安装php5.6.32(centos 7)

一、安装yum源

# yum install epel-release

# rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

二、查看可安装的包

# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php

三、安装配置php5.6环境

# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-fpm  php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof

四、查看php版本信息

root@VM_219_180_centos ~]# php -v
PHP 5.6.32 (cli) (built: Oct 25 2017 06:49:52) 
Copyright (c) 1997-2016 The PHP Group
Zend Engine v2.6.0, Copyright (c) 1998-2016 Zend Technologies
    with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2016, by Zend Technologies
    with Xdebug v2.5.5, Copyright (c) 2002-2017, by Derick Rethans

发表评论