Home > Backend Development > PHP Tutorial > nginx下有多个php版本,怎么选择使用哪一个?

nginx下有多个php版本,怎么选择使用哪一个?

WBOY
Release: 2016-06-06 20:41:36
Original
1107 people have browsed it

Mac pro,用homebrew安装了php 5.6,在终端下php -v显示是5.6,但是通过nginx服务器,用web页面访问phpinfo()却显示php5.5还是用的系统的 没用这个最新的
请问怎么解决

回复内容:

Mac pro,用homebrew安装了php 5.6,在终端下php -v显示是5.6,但是通过nginx服务器,用web页面访问phpinfo()却显示php5.5还是用的系统的 没用这个最新的
请问怎么解决

nginx通过fascgi和php交互。
所以你修改nginx配置,监听你php5.6的php-fpm的端口,然后重启nginx就行了。
具体google一下。

MAC 自带 Apache,先确定当前 HTTP 服务器确实是 nginx。

Nginx 一般和 PHP-fpm 配合使用,他们都是独立的,依照 FastCGI 标准协议通过本地网络交互。所以:

停掉自带的 5.5 版本 PHP-fpm 的开机自启动,加入 5.6 版本 PHP-fpm 的开机自启动,问题解决。

这是因为 mac自带php

mac os系统帮我们自带了很多常用的环境,不需要我们像windows那样所有的都需要自己装,比如ruby python php等,在安装你需要的环境前可先用命令验证一下是否已经安装,避免无谓的折腾

5.5也够用了,当然我自己用的xampp集成环境,
如果想用homebrew的 那就把安装的php位置加入到环境变量里面,
编辑家目录下的.bash_profile文件 加入这一句export PATH=/Applications/XAMPP/xamppfiles/bin:$PATH
/Applications/XAMPP/xamppfiles/bin替换成你自己的php目录

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template