2015年12月初PHP7正式版发布,迎来自2004年以来最大的版本更新。PHP7最显著的变化就是性能的极大提升,已接近Facebook开发的PHP执行引擎HHVM。在wordpress基准性能测试中,速度比5.6版本要快2~3倍,大大减少了内存占用。PHP7在语言上也有一些变化,比如添加返回类型声明、增加了一些新的保留关键字等。在安全方面,去除了PHP安全模式,添加魔术引号等。不仅如此,新版还支持64位,而且包含最新版Zend引擎。
查看 centos 版本
# cat /etc/centos-release
rpm 安装 PHP7 相应的 yum源
CentOS/RHEL 7.x:
# rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
# rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
CentOS/RHEL 6.x:
# rpm -Uvh https://mirror.webtatic.com/yum/el6/latest.rpm
yum安装PHP7
# yum install PHP70w PHP70w-opcache
安装其他插件(选装)
PHP70w
PHP70w-bcmath
PHP70w-cli
PHP70w-common
PHP70w-dba
PHP70w-devel
PHP70w-embedded
PHP70w-enchant
PHP70w-fpm
PHP70w-gd
PHP70w-imap
PHP70w-interbase
PHP70w-intl
PHP70w-ldap
PHP70w-mbstring
PHP70w-mcrypt
PHP70w-MysqL
PHP70w-MysqLnd
PHP70w-odbc
PHP70w-opcache
PHP70w-pdo
PHP70w-pdo_dblib
PHP70w-pear
PHP70w-pecl-apcu
PHP70w-pecl-imagick
PHP70w-pecl-xdebug
PHP70w-pgsql
PHP70w-PHPdbg
PHP70w-process
PHP70w-pspell
PHP70w-recode
PHP70w-snmp
PHP70w-soap
PHP70w-tidy
PHP70w-xml
PHP70w-xmlrpc
重启 Apache
# service httpd restart
原文链接:https://www.f2er.com/centos/379337.html