博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Zend Studio之调试Xdebug
阅读量:5743 次
发布时间:2019-06-18

本文共 1281 字,大约阅读时间需要 4 分钟。

注意:xdebug版本要支持PHP版本,不然就game over了,可以在phpinfo()中查看Xdebug是否安装成功

一、在php.ini配置调试信息(如果安装了zend debugger要注释掉其信息)

; XDEBUG Extension

zend_extension = “D:/Web/wamp/bin/php/php5.3.8/zend_ext/php_xdebug-2.1.2-5.3-vc9-x86_64.dll”(注意中文字符,注意修改)

[xdebug]

; 开启自动跟踪

xdebug.auto_trace = On

xdebug.show_exception_trace = On

;xdebug.remote_autostart = On

xdebug.collect_vars = On

xdebug.collect_return = On

xdebug.collect_params = On

xdebug.trace_output_dir=”D:/Web/wamp/tmp”

xdebug.profiler_enable=On

xdebug.profiler_output_dir=”D:/Web/wamp/tmp”

xdebug.remote_enable = true

xdebug.remote_host=127.0.0.1

xdebug.remote_port=9000

xdebug.remote_handler=dbgp

xdebug.profiler_enable = off

xdebug.profiler_enable_trigger = off

xdebug.profiler_output_name = cachegrind.out.%t.%p

xdebug.profiler_output_dir = “D:/Web/wamp/tmp”

2.在zend Stuido中配置xdebug

窗口 - 首选项 - PHP - Debug,将PHP Debugger 设置为Xdebug

3.在需要调试的文件上右键

Zend Studio之调试Xdebug - 颓废熊 - 破坏的笔记

打开调试窗口

Zend Studio之调试Xdebug - 颓废熊 - 破坏的笔记

 Zend Studio之调试Xdebug - 颓废熊 - 破坏的笔记

 再按调试就OK了

Zend Studio之调试Xdebug - 颓废熊 - 破坏的笔记

 

———————————-

所有的调试服务器配置都可以在 “窗口” -> “首选项” -> “PHP Servers” 中查看编辑

Edit Server

Base URL:http://localhost

Local Web Root:D:\Web\wamp\www

Add new server path map

Path on Server:http://localhost/pro/ThinkPHP3 或者物理地址

path in Workspace: /ThinkPHP3

Zend Studio之调试Xdebug - 颓废熊 - 破坏的笔记

 

最后一点,不要忘记在调试时启用单步执行过滤器哦,不然zend studio在用 xdebug 调试时可能就直接运行到结果

本文转自ljianbing51CTO博客,原文链接:http://blog.51cto.com/ljianbing/1604710 ,如需转载请自行联系原作者

你可能感兴趣的文章
我的工具:文本转音频文件
查看>>
【许晓笛】从零开始运行EOS系统
查看>>
【跃迁之路】【460天】程序员高效学习方法论探索系列(实验阶段217-2018.05.11)...
查看>>
C++入门读物推荐
查看>>
TiDB 源码阅读系列文章(七)基于规则的优化
查看>>
面试中会遇到的正则题
查看>>
Spring之旅第八站:Spring MVC Spittr舞台的搭建、基本的控制器、请求的输入、表单验证、测试(重点)...
查看>>
数据结构与算法——常用排序算法及其Java实现
查看>>
你所不知的Webpack-多种配置方法
查看>>
React.js 集成 Kotlin Spring Boot 开发 Web 应用实例详解
查看>>
webpack+typescript+threejs+vscode开发
查看>>
python读excel写入mysql小工具
查看>>
如何学习区块链
查看>>
搜索问题的办法
查看>>
微信分销系统商城营销5大重点
查看>>
求职准备 - 收藏集 - 掘金
查看>>
htm5新特性(转)
查看>>
Linux-Centos启动流程
查看>>
php 设计模式
查看>>
后端技术精选 - 收藏集 - 掘金
查看>>