Rocky Linux 8.4にphp7.2をインストールする

2021年10月20日

1.有効phpバージョンを確認

[root@localhost ~]# dnf module list php
Rocky Linux 8 - AppStream
Name                             Stream                             Profiles                                              Summary
php                              7.2 [d]                            common [d], devel, minimal                            PHP scripting language
php                              7.3                                common [d], devel, minimal                            PHP scripting language
php                              7.4                                common [d], devel, minimal                            PHP scripting language

ヒント: [d]efault, [e]nabled, [x]disabled, [i]nstalled

2.他バージョンが有効な場合、phpをリセットして有効バージョンをスイッチする
[root@localhost ~]# dnf module -y reset php
[root@localhost ~]# dnf module -y enable php:7.2

3.php 7.2を指定してインストール
[root@localhost ~]# dnf module -y install php:7.2/common

4.phpバージョンの確認

[root@localhost ~]# php -v
PHP 7.2.24 (cli) (built: Oct 22 2019 08:28:36) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies

5.動作確認
[root@localhost ~]# echo “<?php echo 'study skill become smart’.\"\n\";?>" >test02.php
[root@localhost ~]# php test02.php
study skill become smart

Rocky Linux 8

Posted by arkgame