文章内容
一、安装yum源
1 2 3 |
二、查看可安装的包
1 | # yum list --enablerepo=remi --enablerepo=remi-php56 | grep php |
三、安装配置php5.6环境
1 | # 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版本信息
1 2 3 4 5 6 | 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 |