核心為以下兩行 :

1
2
brew unlink [email protected] 
brew link -f [email protected]

每次都要記很煩所以寫了個簡單 script :

GitHub - Koufuchi/php_version_switcher

用命令行移動到 script 所在目錄,執行以下語法並指定版本即可切換:

1
. ~/ps.sh 7.3  # 檔名自己取,執行時後面餵版本參數,如果參數錯誤則會列出你本機安裝的所有版本

或是真的超懶,就在 ~/.zshrc 中加入 :

1
export PATH="$PATH:/<your script path>/"  # script 所在目錄

之後打開 terminal 後就直接輸入以下就好 :

1
ps.sh 7.3 

注意所有指令都會跑去你指定的目錄對,所以其實不太推薦這樣玩