Maison > Article > développement back-end > Comment installer l'environnement php sur macbook
Comment installer l'environnement PHP sur macbook : installez d'abord Brew ; puis installez php7.1 via la commande "brew install php@7.1" ; puis installez mysql5.7 et nginx enfin démarrez PHP via la commande start.
Recommandé : "Tutoriel vidéo PHP"
Environnement PHP d'installation Mac
Installer Brew
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Installer php7.1
brew install php@7.1
Installer mysql5.7
brew install mysql@5.7
Installer nginx
brew install nginx
Démarrer nginx
brew services start nginx
Démarrez PHP
brew services start php@7.1
Démarrez mysql
brew services start mysql@5.7 /usr/local/opt/mysql@5.7/bin/mysql.server start
php quelques chemins
/usr/local/opt/php@7.1/bin/php /usr/local/Cellar/php@7.1/7.1.28/bin/phpize
fichier de configuration php-fpm (l'utilisateur exécutant php modifie l'utilisateur et le groupe ici)
/usr/local/Cellar/php@7.1/7.1.28/.bottle/etc/php/7.1/php-fpm.d/www.conf php.ini /usr/local/etc/php/7.1/php.ini nginx.conf /usr/local/etc/nginx/nginx.conf my.cnf /usr/local/etc/my.cnf
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!