用 Homebrew 懶人切換 php 版本
核心為以下兩行 :
1 | brew unlink [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 |
注意所有指令都會跑去你指定的目錄對,所以其實不太推薦這樣玩
如果您喜歡我的文章,歡迎幫我在下面按5下讚!感謝您的鼓勵和支持!
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment