macbook安装php环境的方法

2020-08-12 17:07:02

macbook安装php环境的方法:首先安装brew;然后通过命令“brew install php@7.1”安装php7.1;接着安装mysql5.7以及nginx;最后通过start命令启动PHP即可。

推荐:《PHP视频教程》

mac安装php环境

安装brew

/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

安装php7.1

brew install php@7.1

安装mysql5.7

brew install mysql@5.7

安装nginx

brew install nginx

启动nginx

brew services start nginx

启动PHP

brew services start php@7.1

启动mysql

brew services start mysql@5.7/usr/local/opt/mysql@5.7/bin/mysql.server start

php一些路径

/usr/local/opt/php@7.1/bin/php/usr/local/Cellar/php@7.1/7.1.28/bin/phpize

php-fpm配置文件 (php运行用户在这里改user和group)

/usr/local/Cellar/php@7.1/7.1.28/.bottle/etc/php/7.1/php-fpm.d/www.confphp.ini/usr/local/etc/php/7.1/php.ininginx.conf/usr/local/etc/nginx/nginx.confmy.cnf/usr/local/etc/my.cnf
相关文章 大家在看