mac下設定預設的php版本的方法:1.新建【.bash_profile】檔案;2、在新檔案中設定預設的php版本,如【export PATH=/bin:$PATH】;3 、執行【source ~/.bash_profile】指令即可。
具體方法:
(推薦教學:php影片教學)
新建一個. bash_profile檔案並編輯
vim ~/.bash_profile
然後在裡面輸入自己想要的php版本
export PATH=/Applications/MAMP/bin/php/php7.2.7/bin:$PATH #/Applications/MAMP/bin/php/php7.2.7/bin是我的php版本路径
儲存重載環境變數
source ~/.bash_profile
相關推薦:php訓練
以上是mac下如何設定預設的php版本的詳細內容。更多資訊請關注PHP中文網其他相關文章!