Mac php版本切换
配置网站的php版本
网站的PHP版本的切换其实就是切换php版本对应的php-fpm 当前电脑有5.6.28/5.3.29两个版本;默认是5.6.28找到nginx网站配置文件路径 : path/to/nginx/conf.d新建配置文件: vim demo.conf粘贴一下内容: server { listen 80; index index.html index.htm index.php; root /home/www/demo; server_name demo.test.com; error_page 404 /404.html; location ~ ^(.+\.php)(.*)$ { fastcgi_split_path_info ^(.+?\.php)(.*)$; fastcgi_pass 127.0.0.1:9000; #fpm监听 地址:端口 fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_param PATH_INFO $fastcgi_path_info; include fastcgi_params; } }重启nginx : sudo brew services restart nginx在/home/www/demo下面新建index.php,粘贴如下内容:
修改命令行php版本
通过brew (un)link来切换PHP版本
brew unlink php56brew link php53
通过php-version来切换和管理版本
安装php-version : brew install php-version 在shell配置文件中加入: source $(brew --prefix php-version)/php-version.sh && php-version 5 在命令输入php-version : * 5.3.29 5.6.28通过上下键 + enter可选择对应的版本.