新建测试页面:<?php phpinfo()?>,在页面中搜索:xdebug,可以查询是否安装及其版本
2. 安装xdebug
把 phpinfo()的html页面内容全部拷贝输入到 https://xdebug.org/wizard 中,自动检测需要安装的xdebug版本,此网址也可以检测你安没安装xdebug和其版本,例如
Download php_xdebug- XXXXX.dll
Move the downloaded file to C:\xampp\php\ext, and rename it to php_xdebug.dll
Update C:\xampp\php\php.ini and add the line:
zend_extension = xdebug
Restart the Apache Webserver
3. 配置phpstorm
在Settings里面找到 PHP ->Debug
一定要找到 1. Install Xdebug or Zend.........Validate (点击它),d出对话框后点击 Validate,如果全是绿色钩子,恭喜你,Xdebug安装配置成功。(这是最关键步骤)
如果不是,例如提示将:xdebug.mode = debug 加在 php.ini 里。我的加在 zend_extension = xdebug 后面。查阅很多网页,他们都加了好多行,在xdebug3里,行不通,浪费我半天时间。
Debug port:9000,9003 其余都勾选。
Xdebug2的端口是9000;Xdebug3的端口是9003
不用配置DBGp Proxy
添加 PHP -> Servers
添加 Add Configuration... 添加PHP Web Page
4. 用Postman断点调试 POST 接口
在Postmen发送请求时,添加 Headers :
KEY : COOKIE
VALUE : XDEBUG_SESSION=PHPSTORM
5. 用浏览器get请求,不停在断点处解决办法
用Postman发送get请求,添加 Headers :........
在浏览器chrome里安装Xdebug helper插件,点击debug变绿即可。
1.为php安装xdebug,方法在上一篇中有详细介绍2.注意这个时候需要修改php.ini内容如下:
[Xdebug]
zend_extension_ts ="d:/wamp/php/ext/php_xdebug-2.1.2-5.2-vc6.dll"
xdebug.auto_trace=On
xdebug.collect_params=On
xdebug.collect_return=On
xdebug.trace_output_dir="d:/wamp/php/debuginfo"
xdebug.profiler_enable=On
xdebug.profiler_output_dir="d:/wamp/php/debuginfo"
xdebug.idekey=PhpStorm
xdebug.remote_enable=on
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
3.phpstorm配置
客户端调试,打开phpStorm,进入File>Settings>PHP>Servers,这里要填写服务器端的相关信息,name填localhost,host填localhost,port填80,debugger选XDebug
进入File>Settings>PHP>Debug,看到XDebug选项卡,port填9000,其他默认
进入File>Settings>PHP>Debug>DBGp Proxy,IDE key 填 phpStorm,host 填localhost,port 填80
点OK退出设置。
4.浏览器设置
chrome有插件xdebug helper下载后,设置白名单为localhost也就是默认localhost,才显示小虫子的图标
5.启动断点:
在phpstorm中设置断点后,启动监听,就是电话一样的图标,然后用chrome浏览localhost中的指定断点的文件,会自动进入断点,在phpstorm中看到调试信息。
更多问题可以去php中文网问答社区提问http://www.php.cn/wenda.html,大神在线帮你解决,希望对你有帮助
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)