Heim > Artikel > Backend-Entwicklung > So installieren Sie PHP auf Centos 7
So installieren Sie PHP in Centos7: 1. PHP-Yum-Quelle installieren; 2. Altes PHP über „yum -y Remove PHP*“ bereinigen; 3. PHP-Streamline-Erweiterung installieren; .
Die Betriebsumgebung dieses Artikels: Centos7-System, PHP7.2-Version, DELL G3-Computer
Wie installiere ich PHP in Centos7?
Centos7 installiert PHP7.2
Empfohlene Methode
# 安装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
PHP Yum-Quelle installieren
# 方法一: 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
Altes PHP bereinigen
yum -y remove php*
PHP-Version anzeigen, die installiert werden kann
yum list php*
PHP optimiert installieren
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
php-fpm startet automatisch beim Booten
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 PHP auf Centos 7. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!