Mac下PHP版本切换

本文是假设你已经安装好了多个php版本,不会的话自行百度

  • 使用brew安装 brew-php-switcher(怎么安装brew就百度吧)
brew install brew-php-switcher
  • 安装好以后切换版本
brew-php-switcher 5.6  #切换到php5.6
brew-php-switcher 7.1  #切换到php7.1
  • 切换以后查看php版本
php -v
  • 重启PHP
brew services stop [email protected] #关闭之前的版本
brew services start [email protected] #启动切换后的版本

你可能感兴趣的:(mac,php)