16
14

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.

miriwo 技術何でもAdvent Calendar 2020

Day 16

HomebrewでインストールしたPHPのバージョンを切り替える方法

Posted at

目的

  • HomebrewでインストールしたPHPのバージョンを切り替える方法をまとめる

実施環境

  • ハードウエア情報

    項目 情報
    OS macOS Catalina(10.15.3)
    ハードウェア MacBook Air (11-inch ,2012)
    プロセッサ 1.7 GHz デュアルコアIntel Core i5
    メモリ 8 GB 1600 MHz DDR3
    グラフィックス Intel HD Graphics 4000 1536 MB

ことの発端

  • PHP7.4を入れたかったけどPHP8.0を入れてしまった。

  • $ php -vを実行すると下記のように表示されてしまい7.4になってない。

    PHP 8.0.0 (cli) (built: Nov 30 2020 13:47:29) ( NTS )
    Copyright (c) The PHP Group
    Zend Engine v4.0.0-dev, Copyright (c) Zend Technologies
        with Zend OPcache v8.0.0, Copyright (c), by Zend Technologies
    

詳細

  1. 下記コマンドを実行してPHP7.4をHomebrewでインストールする。

    $ brew install php@7.4
    
  2. 下記コマンドを実行してPHP8.0からPHP7.4に切り替える。

    $ brew unlink php@8.0
    $ brew link php@7.4
    
  3. 下記コマンドを実行してPHPのバージョンが切り替わったことを確認する。

    $ php -v
    
  4. 筆者の環境だと正常に切り替わってた。

    PHP 7.4.13 (cli) (built: Nov 30 2020 14:46:04) ( NTS )
    Copyright (c) The PHP Group
    Zend Engine v3.4.0, Copyright (c) Zend Technologies
        with Zend OPcache v7.4.13, Copyright (c), by Zend Technologies
    
16
14
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
16
14

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?