6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【PHP】PHPのバージョンを7.4にアップデートする(zshシェル)

Last updated at Posted at 2020-12-11

環境

macOS Catalina(10.15.5)
シェル:zsh
Homebrewは最新版

現在のPHPのバージョンを確認

下記のコマンドでバージョンを確認

ターミナル
$ php -v

PHP7系を検索する

Homebrewコマンドを使って現在インストールができるPHPのバージョンを検索

ターミナル
$ brew search php@7
==> Formulae
php@7.2                    php@7.3                    php@7.4

最新のPHP 7.4 をインストールする

記事投稿時点で最新バージョンでかつ長期サポートなのは7.4です。
Homebrew経由でインストール

ターミナル
$ brew install php@7.4

PATHを通す

PATHを通す必要があるので下記コマンドを実行

ターミナル
$ echo 'export PATH="/usr/local/opt/php@7.4/bin:$PATH"' >> ~/.zshrc
$ echo 'export PATH="/usr/local/opt/php@7.4/sbin:$PATH"' >> ~/.zshrc

PHPを再スタート

下記コマンドでPHPを再スタートさせる

ターミナル
$ brew services start php@7.4

変更を反映させる

sourceコマンドで変更を反映させる

ターミナル
source ~/.zshrc

その後再度バージョンの確認をしアップデートできているかを確認

ターミナル
$ php -v
PHP 7.4.13 (cli)

バージョンが7.4以上になっていれば成功。

6
6
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
6
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?