Die Standardversion ist zu niedrig und die manuelle Installation ist mühsam. Wenn Sie Yum zur Installation verwenden möchten, können Sie die folgende Lösung verwenden:
1. Überprüfen Sie das aktuell installierte PHP-Paket
yum list installed | grep php
Wenn installierte PHP-Pakete vorhanden sind, löschen diese zuerst
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
CentOs 6.x
rpm -Uvh http://mirror.webtatic.com/yum/el6/latest.rpm yum install php70w.x86_64 php70w-cli.x86_64 php70w-common.x86_64 php70w-gd.x86_64 php70w-ldap.x86_64 php70w-mbstring.x86_64 php70w-mcrypt.x86_64 php70w-mysql.x86_64 php70w-pdo.x86_64
4. Installieren Sie PHP FPM
yum install php55w-fpm yum install php56w-fpm yum install php70w-fpm yum install php70w-devel yum install gcc-c++ yum install gcc yum install libtool php -dvld.active=1 test.php
Verwandte Artikel:
Mac verwendet standardmäßig sein eigenes installiertes PHP
Details zum Beispielcode zum Kompilieren und Installieren von PHP7 unter CentOS7 (Bild)
Das obige ist der detaillierte Inhalt vonDetaillierte Einführung in die Installation von PHP7 auf Centos6.7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!