재인쇄: http://my.oschina.net/u/573270/blog/423238
미국 시간으로 2014년 11월 13일, PHP 개발팀은 "PHP 5.6"에서 .3이 출시되었습니다│PHP: Hypertext Preprocessor"가 PHP5.6 시리즈 최신 버전인 "PHP 5.6.3"을 발표했습니다.
최신 버전 5.6.3에서는 여러 버그 수정은 물론, fileinfo 모듈의 보안 취약점도 수정되었습니다.
PHP 팀에서는 PHP5.6 시리즈를 사용하는 사용자에게 최신 버전인 5.6.3으로 업그레이드할 것을 권장합니다.
CentOS에 PHP5.6을 설치하는 방법을 간략하게 소개하겠습니다.
Yum 소스 구성
CentOS 6.x epel 및 remi 소스를 추가합니다.rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpm rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
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 소스가 구성되었습니다. 다음 단계는 PHP5를 설치하는 것입니다. .6 .
yum install --enablerepo=remi --enablerepo=remi-php56 php php-opcache php-devel php-mbstring php-mcrypt php-mysqlnd php-phpunit-PHPUnit php-pecl-xdebug php-pecl-xhprof
php --version PHP 5.6.17 (cli) (built: Jan 6 2016 19:05:40) Copyright (c) 1997-2015 The PHP Group Zend Engine v2.6.0, Copyright (c) 1998-2015 Zend Technologies with Zend OPcache v7.0.6-dev, Copyright (c) 1999-2015, by Zend Technologies with Xdebug v2.3.3, Copyright (c) 2002-2015, by Derick Rethans
여기에 설치된 버전은 PHP5.6.0입니다. 주의깊은 사용자는 ZendGuardLoader가 Zend OPcahe가 되었음을 발견했을 것입니다.
PHP5.5부터 PHP 코드 캐시가 APC에서 Zend OPcache로 변경되었습니다.
위 내용은 Centos 하에서 PHP 56을 설치하는 방법을 소개하고 있으며, 관련 내용도 포함되어 있어 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.