Homebrew搭建多版本PHP开发环境 for Mac
1.安装Brew:
https://brew.sh/
使用brew管理服务:
查看服务列表: brew services
服务操:brew services 操作 服务名
2.安装PHP:
brew install php@7.4
brew tap shivammathur/homebrew-php
brew install php@5.6
日常使用:brew link —overwrite —force php@x.x
安装php扩展:
查看版本信息:pecl version
搜索扩展信息:pecl search 扩展名
安装扩展:peel install 扩展名
安装扩展的扩展名可以是扩展包的地址,在【https://pecl.php.net/】搜索
Ps:会在当前的php版本下安装扩展,其他php版本不受影响。
安装composer:
brew install composer
3.安装mysql
brew install mysql
4.安装nginx
brew install nginx
5.安装redis
brew install redis