在CentOS7.0安装PHP 5.6

因为把服务器环境从CentOS6.5迁移到CentOS7.0,并把Apache改为Nginx了。在这里简单介绍一下CentOS7.0中安装PHP 5.6的方法。

安装PHP5.6版本以后不再需要安装Zend Guard,而是用yum命令安装php-opcache及php-pecl-apcu就可以有效的提高php执行速度。

1. 配置yum源

事先确认yum源的链接是不是有效的。

# rpm -Uvh http://ftp.iij.ad.jp/pub/linux/Fedora/epel/7/x86_64/e/epel-release-7-5.noarch.rpm 
# rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm

2. 确认安装的php版本

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

3. 安装php5.6

# yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-pecl-apcu php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof php-pdo php-pear php-fpm php-cli php-xml php-bcmath php-process php-gd php-common

php-opcache及php-pecl-apcu会有效的提高php执行速度。

4. 确认php版本

PHP 的详细介绍:请点这里
PHP 的下载地址:请点这里

相关推荐