Maison > Article > développement back-end > Comment installer php sur centos 7
Comment installer php sur centos7 : 1. Installez php yum source ; 2. Nettoyez l'ancien php via "yum -y Remove php*" ; 3. Installez l'extension simplifiée php ; 4. Configurez php-fpm pour qu'il démarre automatiquement au démarrage ; .
L'environnement d'exploitation de cet article : système centos7, version PHP7.2, ordinateur DELL G3
Comment installer php dans centos7 ?
Centos7 installe PHP7.2
Méthode recommandée
# 安装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
Installer php yum source
# 方法一: 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
Nettoyer l'ancien php
yum -y remove php*
Afficher la version php qui peut être installée
yum list php*
Installer l'extension simplifiée 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
php- fpm démarre automatiquement au démarrage
systemctl enable php-fpm
Cette méthode d'installation peut amener yum info php et php -v à afficher différentes versions de php
Étude recommandée : "Tutoriel vidéo PHP"
.Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!