具體方法:
(推薦教學:php影片教學)
1、檢查目前已安裝的PHP包
yum list installed | grep php
2、如果有已安裝的PHP包,先刪除他們
yum remove php.x86_64 php-cli.x86_64 php-common.x86_64 php-gd.x86_64 php-ldap.x86_64 php-mbstring.x86_64 php-mcrypt.x86_64 php-mysql.x86_64 php-pdo.x86_64
3、設定CentOS 7.0的yum來源
yum install epel-release rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
4、使用yum list指令查看可安裝的套件(Packege)
yum list --enablerepo=remi --enablerepo=remi-php56 | grep php
5、安裝PHP5.6.x
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
6、檢視已安裝的PHP版本。
php --version
7、安裝php-fpm
yum install --enablerepo=remi --enablerepo=remi-php56 php-fpm
(相關建議:php訓練)
8、重新Apache和php啟動服務
######$ sudo systemctl restart httpd $ sudo systemctl restart php-fpm
以上是centos怎麼安裝php擴展的詳細內容。更多資訊請關注PHP中文網其他相關文章!