4
2

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.

元料理人でプログラミング初心者の僕がMacでPHPを始めるまで。

Posted at

#Mac HomebrewでPHPをインストールする

#####1.ターミナルでHomebrewを最新の状態にする。

brew upgrade

#####2.実行してPHP 7.4をインストールする。

brew install php@7.4

#####3.PHPのバージョンを確認する。

 php -v

ここでバージョン確認したところこんな文が表示されました。

WARNING: PHP is not recommended
PHP is included in macOS for compatibility with legacy software.
Future versions of macOS will not include PHP.
PHP 7.3.24-(to be removed in future macOS) (cli) (built: Dec 21 2020 21:33:25) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.3.24, Copyright (c) 1998-2018 Zend Technologies

将来のアップグレードでPHPのサポートを完全に廃止する予定であるという非推奨の通知が出ました。
解決策は、Homebrewを使用してインストールし、7.4とバージョン8を含むPHPのバージョンを選択することだと思いました。

#####4.PHPの追加

brew tap shivammathur / php

#####5.PHPバージョンを選択 今回は7.4

brew install shivammathur / php / php@7.4

#####6.PHPバージョンとリンクする

brew link --overwrite --force php@7.4

#####7.一度ターミナルを再起動してバージョン確認

php -v

すると先程の警告文は消えました。

PHP 7.4.21 (cli) (built: Jul 12 2021 11:57:26) ( NTS )
Copyright (c) The PHP Group
Zend Engine v3.4.0, Copyright (c) Zend Technologies
    with Zend OPcache v7.4.21, Copyright (c), by Zend Technologies

これでPHPが使えるようになったと思います

####参考記事
https://qiita.com/miriwo/items/cd54077aad7e139cf518

4
2
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
4
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?