https://www.jianshu.com/p/1e23aba0a164
建议方法
# 安装EPEL yum存储库yum install epel-release -y# 安装Remi存储库rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm# 安装 PHP 7.3yum --enablerepo=remi-php73 install php# 安装 PHP 7.2yum --enablerepo=remi-php72 install php# 安装 PHP 7.1yum --enablerepo=remi-php71 install php
安装php yum源
# 方法一:rpm -Uvh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpmrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm# 方法二:yum install epel-release -yrpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpmyum -y remove php*yum list php*#安装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
