在Centos 7 中安裝PHP7.3

PHP7.3 的介紹:

https://www.php.net/releases/7_3_0.php

教學:
https://timshyue.com/category/php/


先安裝EPEL & remi :

 yum install epel-release -y 
rpm -Uvh https://rpms.famillecollet.com/enterprise/remi-release-7.rpm 

使用yum 安裝php 7.3 + 相關擴展包

yum --enablerepo=remi-php73 install php 

yum --enablerepo=remi-php73 install php-soap php-xmlrpc php-json php-pecl-apcu php-cli php-pear php-mysqlnd php-pgsql php-pecl-mongodb php-pecl-memcache php-pecl-memcached php-gd php-mbstring php-mcrypt php-xml php-pdo php-odbc php-fpm php-mssql php-pecl-zip php-opcache -y
yum --enablerepo=remi-php73 search php | grep php73 

驗證

php -v

參考:
https://www.itread01.com/content/1548304689.html