在 centos 7 中安装 PHP 版本
设置 Yum 存储库
首先,您需要在系统上启用 Remi 和 EPEL yum 存储库。使用以下命令在您的 CentOS 和 Red Hat 7/6 系统上安装 EPEL 存储库
使用此命令在您的系统上安装 EPEL yum 存储库
sudo yum install epel-release
现在根据您的操作系统版本执行以下命令之一以安装 Remi 存储库。
sudo rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm
在 CentOS 上安装 PHP 7 您的系统已准备好从 yum 存储库安装 PHP。根据您的要求,使用以下命令之一在您的系统上安装 PHP 7.4 或 PHP 7.3 或 PHP 7.2 或 PHP 7.1。
安装 PHP 7.4
yum --enablerepo=remi-php74 install php
安装 PHP 7.3
yum --enablerepo=remi-php73 install php
安装 PHP 7.2
yum --enablerepo=remi-php72 install php
.
检查版本 PHP 安装
php -v
.
PHP 7.4.1 (cli) (built: Dec 17 2019 16:35:58) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
安装 PHP 模块
您可能还需要根据您的应用程序要求安装额外的 PHP 模块。下面的命令将安装一些更有用的 PHP 模块。
对于 PHP 7.4
yum --enablerepo=remi-php74 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt
对于 PHP 7.3
yum --enablerepo=remi-php73 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt
对于 PHP 7.2
yum --enablerepo=remi-php72 install php-xml php-soap php-xmlrpc php-mbstring php-json php-gd php-mcrypt