使用yum源在centos 7系统中安装php5.6.32环境非常简单,复制以下命令依次在linux中运行即可,很快。
# yum install epel-release # rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
使用yum list命令查看可安装的包,此命令只是起到查看作用,可以不运行。
# yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
使用yum源安装配置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命令查看安装的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
完毕!
php5.6环境可以完全兼容目前最新版的apache server服务器,如httpd2.4.29版本,最新版的apache服务器不仅修复了漏洞,而且性能方面都有很好的优化,可以查看:centos 7最新版apache服务器安装教程