首先安装brew软件包,百度brew 第一个网站里有一段命令 复制执行即可.
执行这三句命令
brew tap homebrew/dupes
brew tap homebrew/versions
brew tap homebrew/php
安装前更新软件源
brew upgrade
brew update
搜索php (我安装的是php5.6)
brew search php56
安装
brew install php56 \ --without-snmp \ --without-apache \ --with-debug \ --with-fpm \ --with-intl \ --with-homebrew-curl \ --with-homebrew-libxslt \ --with-homebrew-openssl \ --with-imap \ --with-mysql \ --with-tidy
如果编译过程中 显示can‘t find file XXXX 执行下xcode-
select
--
install (电脑上有XCODE的前提下) 应该是gcc没装.
编译完成后。输入php -v 显示5.6.15版本 说明更新成功 至于 原来自带的 貌似也更新了.
路径/usr/local/etc/php/下有php-fpm.conf 把里面输入日志和进程ID的配置打开 然后php56-fpm start 开启 stop停止.
至此php56安装成功.
时间: 2024-11-06 12:18:48