Mac安装PHP环境
1、安装brew
/bin/zsh -c "$(curl -fsSLhttps://gitee.com/cunkai/HomebrewCN/raw/master/Homebrew.sh)"
选择1中科大源根据提示完成安装
2、安装nginx
brew install nginx
3、安装mysql
brew install mysql
4、安装PHP
#查看可安装版本
brew search php
#存在7.4,安装之
brew install php@7.4
echo 'export PATH="/usr/local/opt/php@7.4/bin:$PATH"' >> ~/.zshrc
echo 'export PATH="/usr/local/opt/php@7.4/sbin:$PATH"' >> ~/.zshrc
source ~/.zshrc
5、安装phpredis拓展
https://www.cnblogs.com/ihuangjianxin/p/10185266.html
进入php官网下载redis扩展下载扩展
#http://pecl.php.net/package/redis
解压安装包
tar -xzvf redis-4.*.tgz
通过phpize生成编译configure配置文件
cd redis-4.*/
phpize
./configure --with-php-config=/usr/local/opt/php\@7.*/bin/php-config
编译
make
make install
配置 php.ini文件
文件位置:/usr/local/etc/php/7.2/php.ini文件内容添加下面这行
extension="redis.so"
重启PHP完成安装
6、安装redis
brew installredis
到此简单记录下Mac安装PHP环境的过程,后续有时间再丰富一下细节内容。更多相关信息,请关注微信公众号:技术大番薯。不定期更新。