如何在Mac上使用带有PHPStorm的Nginx上的Xdebug和Laravel?

前端之家收集整理的这篇文章主要介绍了如何在Mac上使用带有PHPStorm的Nginx上的Xdebug和Laravel?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

有关如何使用PHPStorm设置XDebug的指南.

版本:

> PHP 7.0
> PHPStorm 2016.3.2
> XDebug 2.5
> OS X El Capitan 10.11.6

最佳答案
本指南仅适用于PHP7,Mac El Capitan,PHPStorm 2016.3

>安装brew http://brew.sh/
>安装PHP7 brew install PHP70
>安装Nginx

指南 – http://learnaholic.me/2012/10/10/installing-nginx-in-mac-os-x-mountain-lion/

配置 – https://gist.github.com/kmaxat/c07795ab88677efb843686d075fafa9e
> brew安装PHP70-xdebug
>在laravel的公共文件夹中创建info.PHP文件

info.PHP:<?PHP PHPinfo();
>编辑文件/usr/local/etc/PHP7.0/conf.d/ext-xdebug.ini

的zend_extension = “在/ usr /本地的/ opt / PHP70-的XDebug / xdebug.so”
xdebug.remote_enable = 1
xdebug.remote_connect_back = 1
xdebug.remote_port = 9001
xdebug.scream = 0
xdebug.show_local_vars = 1
xdebug.idekey = PHPSTORM
>重新启动Nginx sudo Nginx -s reload或brew services restart Nginx
>重启PHP-fpm brew services重启PHP70
>转到localhost / info.PHP,您应该可以看到xdebug.部分图片

List item

>设置CLI解释器. PHPStorm – >设置 – >语言与框架 – > PHP

enter image description here

>单击CLI解释器旁边的“…”.如果上述步骤正确完成,您应该能够看到:

enter image description here

>设置服务器:
运行 – >编辑配置 – > …(服务器旁边).

enter image description here

>设置编辑配置
运行 – >编辑配置 – > – > PHP Web应用程序.选择创建的服务器,设置名称

enter image description here

>在工具栏中选择已创建的服务器,然后单击“开始侦听PHP调试连接”.

enter image description here

>在public / index.PHP中设置断点

enter image description here

>在工具栏中单击“Debug’ServerName’”

原文链接:https://www.f2er.com/nginx/434591.html

猜你在找的Nginx相关文章