选择刚才配置好的php路径配置: 4.配置xdebug

时间:2022-04-28 04:24:50

WampServer:  wampserver2.2e-php5.3.13-httpd2.2.22-mysql5.5.24-32b.exe

IDE:  IntelliJ IDEA 2017.2.7

Intellij IDEA 如何撑持php请参考,IntellIJ IDEA 配置 Vue 撑持。

二、xdebug配置

1.配置 wamp 安置目录下的php.ini文件,D:\wamp\bin\apache\apache2.2.22\bin\php.ini ,编纂内容如下:

;开启长途调试 xdebug.remote_enable = on xdebug.profiler_enable = on xdebug.profiler_enable_trigger = on xdebug.profiler_output_name = cachegrind.out.%t.%p xdebug.profiler_output_dir = "D:/wamp/tmp" xdebug.show_local_vars=0 ;长途措置惩罚惩罚协议 xdebug.remote_handel=dbgp ;端标语 xdebug.remote_port=9001 ;IDE KEY xdebug.idekey="phpxdebug"

三.IntelliJ IDEA配置

1.打开需要debug的项目,选择 File -》 Settings :

选择刚才配置好的php路径配置: 4.配置xdebug

2.配置php的执行文件路径、和当前版本:

选择刚才配置好的php路径配置: 4.配置xdebug

3.添加本地php可执行路径

选择刚才配置好的php路径配置: 4.配置xdebug

选择刚才配置好的php路径配置: 4.配置xdebug

点击应用后,,选择适才配置好的php路径配置:

选择刚才配置好的php路径配置: 4.配置xdebug

4.配置xdebug,填写上文在php.ini中设置好的端标语:

选择刚才配置好的php路径配置: 4.配置xdebug

5.配置DBGp Proxy参数:

选择刚才配置好的php路径配置: 4.配置xdebug

6.配置你需要调试的web应用地点:

选择刚才配置好的php路径配置: 4.配置xdebug

7.设置当前web application的 Run/Debug Configurations, 点击IDE的右上角,点击编纂配置信息:

选择刚才配置好的php路径配置: 4.配置xdebug

8.添加一个PHP Web Application:

选择刚才配置好的php路径配置: 4.配置xdebug

9.打开xdebug 监听开关,在需要调试的处所设置断点:

选择刚才配置好的php路径配置: 4.配置xdebug

选择刚才配置好的php路径配置: 4.配置xdebug

到这一步已经大功乐成了,点击右上角的 debug 按钮开始调试!

注意:

IDE开启了xdebug监听的话,访谒该web应用,会自动激发debug行动。无需手动点击IDE的debug按钮。

记得请一真打开 xdebug 监听,否则在非调试情况下访谒web应用会很慢。

可能是xdebug会向外广播调试数据,没有接收者响应的话,会轮询各个网络吧,所以导致响应慢,这纯属小我私家猜度。

PS:

PhpStorm+xdebug+postman调试