So installieren Sie PHP7.2 auf Centos7: 1. Bereinigen Sie das alte PHP mit „yum -y Remove PHP*“. 2. Überprüfen Sie die PHP-Version, die installiert werden kann. 4. Stellen Sie PHP ein. fpm startet automatisch. Schalten Sie es einfach ein.
Die Betriebsumgebung dieses Artikels: Centos7-System, PHP7.2-Version, DELL G3-Computer
Wie installiere ich PHP7.2 in Centos7 neu?
Centos7 installiert PHP7.2
# 安装EPEL yum存储库 yum install epel-release -y # 安装Remi存储库 rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm # 安装 PHP 7.3 yum --enablerepo=remi-php73 install php # 安装 PHP 7.2 yum --enablerepo=remi-php72 install php # 安装 PHP 7.1 yum --enablerepo=remi-php71 install php
# 方法一: 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 # 方法二: yum install epel-release -y rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm
yum -y remove php*
yum list php*
yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel # 也可以安装 豪华版拓展 yum -y install php72w php72w-cli php72w-fpm php72w-common php72w-devel php72w-embedded php72w-gd php72w-mbstring php72w-mysqlnd php72w-opcache php72w-pdo php72w-xml
systemctl enable php-fpm
Diese Installationsmethode kann dazu führen, dass yum info php und php -v unterschiedliche php-Versionen anzeigen
Empfohlene Studie: „PHP Video Tutorial“
Das obige ist der detaillierte Inhalt vonSo installieren Sie PHP7.2 auf Centos7 neu. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!