本文主要跟大家分享CentOS安裝PHP5.6實例,希望能幫助大家。
設定yum來源
追加CentOS 6.5的epel及remi來源
rpm -Uvh http://ftp.iij.ad.jp/pub/linux/fedora/epel/6/x86_64/epel-release-6-8.noarch.rpmrpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
CentOS 7.0的來源
yum install epel-releaserpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
使用yum list指令查看可安裝的套件(Packege)
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
安裝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指令查看版本
php --version
在這裡安裝的版本是PHP5. 6.34,細心的使用者可能已經發現ZendGuardLoader變成Zend OPcahe了。
對從PHP5.5開始PHP程式碼快取從APC變成了Zend OPcache了。
如果設定nginx的話,還需要安裝php-fpm
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
在CentOS 6 系統上啟動PHP-FPM服務
service php-fpm start
相關推薦:
#以上是CentOS安裝PHP5.6實例的詳細內容。更多資訊請關注PHP中文網其他相關文章!