如何在 macOS 上搭建 PHP 开发环境

如何在 macOS 上搭建 PHP 开发环境

Linux, Nginx, MySQL, PHP

$ php --version

$ php -v

# PHP 7.3.11 (cli) (built: Apr 17 2020 19:14:14) ( NTS )
# Copyright (c) 1997-2018 The PHP Group
# Zend Engine v3.3.11, Copyright (c) 1998-2018 Zend Technologies
➜  ~ 

$ php -v
$ php --version
# PHP 7.3.11 (cli) (built: Apr 17 2020 19:14:14) ( NTS )

# cli test
$ php foreach.php

# -S : Run with built-in web server.
$ php -S 127.0.0.1:8090
# http://127.0.0.1:8090
# [Sat Aug  8 01:25:06 2020] Failed to listen on 127.0.0.1:8090 (reason: Address already in use)

$ ifconfig
# en0
# inet 192.168.1.12 netmask 0xffffff00 broadcast 192.168.1.255
$ php -S 192.168.1.12:8090
# http://192.168.1.12:8090/

php info

# php info
$ php info.php 



https://www.php.net/manual/en/function.phpinfo.php

如何在 macOS 上搭建 PHP 开发环境_第1张图片

# php 7.x
$ brew install php


如何在 macOS 上搭建 PHP 开发环境_第2张图片

refs

https://learnku.com/articles/35981

如何在 macOS 上搭建 PHP 开发环境_第3张图片

Nginx

http://nginx.org/en/download.html

Laravel

Laravel是一个具有表达力,优雅语法的Web应用程序框架。

https://laravel.com/

https://github.com/xgqfrms/php-all-in-one/issues/1


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com 发布文章使用:只允许注册用户才可以访问!


你可能感兴趣的:(如何在 macOS 上搭建 PHP 开发环境)