mac中brew安装php7.4

在mac中使用brew安装低版本php,出现No available formula with the name “php@7.4“…
从第三方仓库中安装 比如(所有旧版php仓库地址https://github.com/shivammath…)

1
2
3
4
# 将第三方仓库加入brew
brew tap shivammathur/php
# 安装PHP
brew install shivammathur/php/php@7.4
1
2
3
4
5
6
7
8
9
10
11
12
13
# 刷新环境变量
source ~/.zshrc
# 刷新php连接
brew link php@7.4
# 查看php版本
php -v
# 查看PHP的服务
brew services list

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