phpstorm调试配置

phpstorm调试配置

环境

phpstudy+phpstorm+xdebug

phpstudy

image-20241126104246096

php拓展勾选debug

配置php.ini

1
2
3
4
5
6
7
8
9
10
11
12
13
14
[Xdebug]
zend_extension=D:/Downloads/phpstudy/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=On
xdebug.trace_output_dir=D:/Downloads/phpstudy/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace
xdebug.profiler_enable=On
xdebug.profiler_output_dir ="D:\Downloads\phpstudy\phpstudy_pro\Extensions\tmp\xdebug"
xdebug.remote_enable=On
xdebug.remote_host=zymiczymic
xdebug.remote_port=9007
xdebug.remote_handler=dbgp
xdebug.idekey=PHPSTORM
xdebug.remote_enable=On

phpstorm

配置php

image-20241126104719157

创建服务器

image-20241126104746068

这里一定要记得勾选映射

选择端口

image-20241126104823309

与php.ini上一致

image-20241126104840577

xdebug

image-20241126104912837

开始调试

开启监听

image-20241126105011528

浏览器开启xdebug

image-20241126105037980

成功走到断点

image-20241126105059345


phpstorm调试配置
http://example.com/2024/11/26/phpstorm调试配置/
作者
zymic
发布于
2024年11月26日
许可协议