MacでPHPをインストールする手順を解説します。
PHP公式ドキュメントにあるmacOSへのインストールを参考に行います。
homebrewをインストールした後に、次のコマンドを実行します。
brew install php
実行し、次のような返答が返ってきたらPHPのインストールは終了です。
To enable PHP in Apache add the following to httpd.conf and restart Apache:
LoadModule php_module /opt/homebrew/opt/php/lib/httpd/modules/libphp.so
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
Finally, check DirectoryIndex includes index.php
DirectoryIndex index.php index.html
The php.ini and php-fpm.ini file can be found in:
/opt/homebrew/etc/php/8.3/
To start php now and restart at login:
brew services start php
Or, if you don't want/need a background service you can just run:
/opt/homebrew/opt/php/sbin/php-fpm --nodaemonize