美文网首页
Mac OS 安装php7.4

Mac OS 安装php7.4

作者: PHP的点滴 | 来源:发表于2021-03-17 13:59 被阅读0次

安装homebrew方法(若已经安装,忽略)

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

通过 brew 安装

brew install php@7.4

刷新php连接

brew link php@7.4

查看php版本

php -v

查看PHP的服务

brew services list
# 两个PHP版本
php@7.1 stopped       
php@7.2 started jason /Users/jason/Library/LaunchAgents/homebrew.mxcl.php@7.2.plist

停止老的PHP版本,启用新的php版本

# 停止老版本
brew services stop php@7.2
# 启动新的版本
brew services start php@7.4

相关文章

网友评论

      本文标题:Mac OS 安装php7.4

      本文链接:https://www.haomeiwen.com/subject/nnzscltx.html