mac 升級 PHP 版本
檢視系統的PHP 環境版本
➜ ~ php -v
brew 查詢PHP的資源版本
➜ ~ brew search php
以此圖為例:當前版本是 PHP7.1,目標更新PHP 版本至7.3
➜ ~ brew install php@7.3
➜ ~ brew info php@7.3
➜ ~ brew --prefix php@7.3
修改 ~/.bash_profile
➜ ~ cat ~/.bash_profile
# echo 'export PATH="$(brew --prefix php71)/bin:$PATH"' >> ~/.bash_profile #for php
# echo 'export PATH="$(brew --prefix php71)/sbin:$PATH"' >> ~/.bash_profile #for php-fpm
➜ ~ source ~/.bash_profile
➜ ~ php -v #檢視更新後的版本
本作品採用《CC 協議》,轉載必須註明作者和本文連結