phpStorm+XDebug+chrome浏览器和不使用浏览器 配置

使用chrome浏览器

运行环境:

phpStorm 10.0.1

PHP 5.6.24 VC11 x86 Thread Safe

Xdebug 2.4.1(PHP 5.6 VC11 TS (32 bit)

1. PHP安装xdebug扩展

因为是自己搭建的php环境,所以需要在php.ini上添加一下配置:

[xdebug]
zend_extension="F:\AppServ\php5\ext\php_xdebug-2.4.1-5.6-vc11.dll"  #指定Xdebug扩展文件的绝对路径
xdebug.auto_trace=on  #启用代码自动跟踪
xdebug.collect_params=on  #允许收集传递给函数的参数变量
xdebug.collect_return=on  #允许收集函数调用的返回值
xdebug.trace_output_dir="F:\AppServ\Xdebug"  #指定堆栈跟踪文件的存放目录
xdebug.profiler_enable=on  #是否启用Xdebug的性能分析,并创建性能信息文件
xdebug.profiler_output_dir="F:\AppServ\Xdebug"  #指定性能分析信息文件的输出目录
xdebug.remote_enable = on  #是否开启远程调试
xdebug.remote_handler = dbgp  #指定远程调试的处理协议
xdebug.remote_host= localhost  #指定远程调试的主机名
xdebug.remote_port = 9000  #指定远程调试的端口号
xdebug.idekey = PHPSTORM  #指定传递给DBGp调试器处理程序的IDE Key

有些配置可能不需要,可再进行查资料确认!!!
wampserver自己测试时,配置如下:

[xdebug]
zend_extension="f:/wamp64/bin/php/php7.2.4/zend_ext/php_xdebug-2.6.0-7.2-vc15-x86_64.dll"

xdebug.remote_enable = on
xdebug.profiler_enable = off
xdebug.profiler_enable_trigger = off
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="f:/wamp64/tmp"
xdebug.show_local_vars=0

2. 保存php.ini,重新启动apache检查是否成功开启了xdebug服务.

image

3. 打开phpStorm,快捷键Clt+Alt+S打开settings搜索Xdebug.

image

如果在上级菜单栏->PHP中phpStorm没有自动识别php版本,则自己手动添加

image

4.进入Settings>PHP>Debug>DBGp Proxy,IDE key 填 PHPSTORM,host 填localhost,port填9000

image

5.进入Settings>PHP>Servers,这里要填写服务器端的相关信息,如:name填localhost,host填localhost,port填80,debugger选XDebug

image

6.进入Run> Debug configurations,点+号选择PHP Web Application,Server选填localhost,Start URL填你要访问的页面(如:/index.php), Browser 默认或者选chrome

image

其实5和6的步骤可以一气呵成

在导航栏中(没有显示则设置View->Navigation Bar)选择Edit Configurations...

image

**7.打开浏览器,如果是用chrome或者Firefox可以找到对应的XDebug工具,工具的设置里的IDE KEY填上phpStorm,

image

把localhost加入到白名单,以后调试的时候把工具启用就好了。如果是用其他浏览器,可以访问http://www.jetbrains.com/phpstorm/marklets/,在右边填上phpStorm,点generate,把下面的链接添加到收藏夹,方便调用。**

我用的是这款

image

8.好了,这下都配置好了,开始断点测试吧。在phpStorm里打开Debug监听,就是电话按钮那个,然后在代码前断点,点击绿色的debug爬虫按钮,chrome浏览器打开xdebug页,phpStorm出现debug窗口

image

出现如图,证明你配置成功了。

image

phpstorm不使用浏览器调试php

如果想用phpstome不通过浏览器, 直接调试php脚本, 可以在上述步骤基础上, 继续:

image
image
image

实测, 可以不打开"电话"按钮进行监听也行.

image
image

你可能感兴趣的:(phpStorm+XDebug+chrome浏览器和不使用浏览器 配置)