centos7.9安装php8
1、卸载所有已安装的PHP
yum remove -y php*
2、添加remi源(可能需要提前安装epel-release)
yum install -y https://rpms.remirepo.net/enterprise/remi-release-7.rpm
3、单独启用php80的源(没有yum-config-manager命令的话需要安装yum-utils)
yum install -y yum-utils device-mapper-persistent-data lvm2
yum-config-manager --disable ‘remi-php*’
yum-config-manager --enable remi-php80
4、安装php及其拓展
yum install -y php php-bcmath php-cli php-common php-devel php-fpm php-gd php-intl php-ldap php-mbstring php-mysqlnd php-odbc php-pdo php-pear php-pecl-xmlrpc php-pecl-zip php-process php-snmp php-soap php-sodium php-xml
5、版本验证
php -v