phpstrom+phpstudy+postman
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了phpstrom+phpstudy+postman相关的知识,希望对你有一定的参考价值。
1.打开phpstudy xdebug 扩展
2.修改php.ini
[XDebug]
xdebug.profiler_output_dir="D:\\phpStudy\\tmp\\xdebug"
xdebug.trace_output_dir="D:\\phpStudy\\tmp\\xdebug"
zend_extension="D:\\phpStudy\\php\\php-5.5.38\\ext\\php_xdebug.dll"
;是否允许Xdebug跟踪函数调用,跟踪信息以文件形式存储,默认值为0
xdebug.auto_trace=1
;是否允许Xdebug跟踪函数参数,默认值为0
xdebug.collect_params=1
;是否允许Xdebug跟踪函数返回值,默认值为0
xdebug.collect_return=1
;打开xdebug的性能分析器,以文件形式存储,这项配置是不能以ini_set()函数配置的,默认值为0
xdebug.profiler_enable = 1
;性能分析文件的命名规则,默认值为cachegrind.out.%p
xdebug.profiler_output_name = "cachegrind.out.%t.%p"
xdebug.remote_enable = 1
;用于zend studio远程调试的应用层通信协议
xdebug.remote_handler = "dbgp"
xdebug.idekey = phpStorm
xdebug.remote_host = "localhost"
xdebug.remote_port = 9000
2.打开phpstorm 按照以下截图设置
然后点击postman的send 按钮就会跳到phpstorm 打断点的地方
{
"key":"o",
"searchFields":["enName","name"],
"orderType":"enName",
"start":1,
"num": 10
}
以上是关于phpstrom+phpstudy+postman的主要内容,如果未能解决你的问题,请参考以下文章
PHPstudy + phpstrom +xdebug 断点调试(windows) - CSDN博客