Mac入门--如何使用brew安装多个PHP版本

Posted jingxiaoniu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mac入门--如何使用brew安装多个PHP版本相关的知识,希望对你有一定的参考价值。

一 安装7.1

1. 安装php7.1

brew install [email protected]

2. 修改配置 php-fpm.conf,一般在/usr/local/etc/php下(如果php-fpm.conf中不存在,则查找php-fpm.d目录)

vim php-fpm.conf

listen = 127.0.0.1:9000

3. 启动PHP7.1

brew services start [email protected]

4. 这时php-fpm会监听9000端口,修改nginx的配置文件改为端口为9000(一般在/usr/local/etc/nginx/下面)

vim nginx.conf

fastcgi_pass   127.0.0.1:9000

5. 启动nginx服务

#启动 brew services start nginx

#重启 brew services restart nginx

6. 查看当前版本

php -v

 

二 安装并切换7.2

1. 清除PHP7.1的软链

brew unlink [email protected]

2. 安装PHP7.2 

brew install [email protected]

3. 添加PHP7.2的软链

brew link [email protected]

4. 修改配置 php-fpm.conf

vim php-fpm.conf

listen = 127.0.0.1:9001

5. 启动PHP7.2

brew services start [email protected]

6. 修改nginx配置

vim nginx.conf

fastcgi_pass   127.0.0.1:9001

7. 重启nginx服务

brew services restart nginx

8. 查看当前版本

php -v 

 

以上就是这次的全部内容 !

 

以上是关于Mac入门--如何使用brew安装多个PHP版本的主要内容,如果未能解决你的问题,请参考以下文章

mac平台多个php版本快速切换

mac中怎样通过brew 安装php的redis扩展

mac下多个php版本快速切换的方法是怎么样

Mac 使用brew安装低版本的软件,如opencv

mac中利用brew实现多版本php共存以及任意切换

Mac配置PHP+Nginx+MySQL开发环境