0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

macOSでphpコマンドを使用できるようにする

Last updated at Posted at 2024-05-10

前提

homebrewをインストールしてあること

現状

$ php -v
zsh: command not found: php

command not found: phpと出ます。

やり方

下記コマンドを実行し、homebrewを最新化

brew upgrade

下記コマンドを実行し、PHPを手動でインストールする。

brew install php

下記コマンドを実行し、PHPのversionとコマンドを使用できることを確認

php -v

PHP 8.3.7 (cli) (built: May  7 2024 16:35:26) (NTS)
Copyright (c) The PHP Group
Zend Engine v4.3.7, Copyright (c) Zend Technologies
    with Zend OPcache v8.3.7, Copyright (c), by Zend Technologies

PHPはほとんどのmacOSシステムにプリインストールされているため、通常は手動でインストールする必要はないそうですが、どうしても必要な場合はお試しください。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?