本指南提供了在 centos 8 / rhel 8 linux 系统上安装 php 7.4 的步骤。有兴趣的开发者已经可以在生产环境中使用使用 php 7.4,正式版本的官方发布时间为 2019 年 11 月 28 日。
请按照以下步骤在 centos 8 / rhel 8 上安装 php 7.4。
步骤一:添加 epel 和 remi 库
安装需要 epel 和 remi 库。通过以下命令将其添加到系统中
sudo yum -y install https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpmsudo yum -y install https://rpms.remirepo.net/enterprise/remi-release-8.rpm
步骤二:在 centos 8 / rhel 8 上安装 php 7.4
添加相关的库后,启用 php 7.4 的 remi 模块并进行安装。
sudo dnf -y install dnf-utils
启用 php 7.4 的模块流
sudo dnf module install php:remi-7.4
接受安装提示
updating subscription management repositories.
last metadata expiration check: 0:00:24 ago on mon 16 sep 2019 09:36:21 am edt.
dependencies resolved.
===================================
package arch version repository size
=========================
installing group/module packages:
php-cli x86_64 7.4.0~rc1-1.el8.remi remi-modular 4.6 m
php-common x86_64 7.4.0~rc1-1.el8.remi remi-modular 1.2 m
php-fpm x86_64 7.4.0~rc1-1.el8.remi remi-modular 1.6 m
php-json x86_64 7.4.0~rc1-1.el8.remi remi-modular 71 k
php-mbstring x86_64 7.4.0~rc1-1.el8.remi remi-modular 524 k
php-xml x86_64 7.4.0~rc1-1.el8.remi remi-modular 211 k
installing dependencies:
nginx-filesystem noarch 1:1.14.1-8.module+el8+2505+fe936cef rhel-8-for-x86_64-appstream-rpms 24 k
oniguruma x86_64 6.8.2-1.el8 rhel-8-for-x86_64-appstream-rpms 188 k
httpd-filesystem noarch 2.4.37-11.module+el8.0.0+2969+90015743 rhel-8-for-x86_64-appstream-rpms 34 k
libxslt x86_64 1.1.32-3.el8 rhel-8-for-x86_64-baseos-rpms 249 k
installing module profiles:
php/common
enabling module streams:
httpd 2.4
nginx 1.14
php remi-7.4
transaction summary
===============================
install 10 packages
total download size: 8.6 m
installed size: 43 m
is this ok [y/n]: y
使用如下命令安装额外的包
sudo dnf updatesudo yum install php-xxx
当前的 php 版本应该为 7.4
$ php -vphp 7.4.0 (cli) (built: nov 26 2019 20:13:36) ( nts )copyright (c) the php groupzend engine v3.4.0, copyright (c) zend technologies
查看已启用的模块:
$ php --modules
你已成功在 centos 8 / rhel 8 上安装 php 7.4。
更多相关php7文章请访问:《php7》教程
以上就是在 centos 中安装 php 7.4 的方法的详细内容。
