博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
paip.xdebug 配置attilax总结.txt
阅读量:2075 次
发布时间:2019-04-29

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

paip.xdebug 配置attilax总结.txt

nts  not thead safe.

 

-----php.ini

[Xdebug]
zend_extension_ts="D:\wamp\bin\mysql

\mysql5.0.51b\php_xdebug-2.1.0-5.2-

vc6.dll"

xdebug.collect_params=On
xdebug.collect_return=On
xdebug.trace_output_dir="d:\xdebug" //

设定函数调用监测信息的输出文件的路径。

xdebug.profiler_enable=On  //打开效能监测

器。

xdebug.profiler_output_dir="d:\xdebug"

//设定效能监测信息输出文件的路径。

 

xdebug.remote_enable=On

xdebug.remote_autostart=On
xdebug.auto_trace=On

 

------------------更加详细的配置

[Xdebug]

zend_extension_ts="D:\wamp\bin\mysql

\mysql5.0.51b\php_xdebug-2.1.0-5.2-

vc6.dll"

xdebug.collect_params=4
xdebug.profiler_output_dir="D:\xdebug"
xdebug.profiler_enable=On
xdebug.profiler_enable_trigger=1
xdebug.default_enable=On
xdebug.show_exception_trace=On
xdebug.show_local_vars=1
xdebug.max_nesting_level=50
xdebug.var_display_max_depth=6
xdebug.dump_once=On
xdebug.dump_globals=On
xdebug.dump_undefined=On
xdebug.dump.REQUEST=*
xdebug.dump.SERVER=REQUEST_METHO

D,REQUEST_URI,HTTP_USER_AGENT

xdebug.trace_output_dir="D:\xdebug"
;然后打开远程调试
xdebug.remote_enable=1
;自动开始也打开
xdebug.remote_autostart=1

;开启自动跟踪

 
xdebug.auto_trace = On
 
;开启异常跟踪
 
xdebug.show_exception_trace = On
 
;开启远程调试自动启动
 
xdebug.remote_autostart = On
 
;开启远程调试
 
xdebug.remote_enable = On
 
;收集变量
 
xdebug.collect_vars = On
 
;收集返回值
 
xdebug.collect_return = On
 
;收集参数
 
 

xdebug.remote_connect_back=1

xdebug.remote_host=127.0.0.1
xdebug.scream=1

转载地址:http://kqqmf.baihongyu.com/

你可能感兴趣的文章
Leetcode C++《每日一题》20200626 338. 比特位计数
查看>>
Leetcode C++ 《拓扑排序-1》20200626 207.课程表
查看>>
Go语言学习Part1:包、变量和函数
查看>>
Go语言学习Part2:流程控制语句:for、if、else、switch 和 defer
查看>>
Go语言学习Part3:struct、slice和映射
查看>>
Go语言学习Part4-1:方法和接口
查看>>
Leetcode Go 《精选TOP面试题》20200628 69.x的平方根
查看>>
leetcode 130. Surrounded Regions
查看>>
【托业】【全真题库】TEST2-语法题
查看>>
博客文格式优化
查看>>
【托业】【新托业全真模拟】疑难语法题知识点总结(01~05)
查看>>
【SQL】group by 和order by 的区别。
查看>>
【Python】详解Python多线程Selenium跨浏览器测试
查看>>
Jmeter之参数化
查看>>
Shell 和Python的区别。
查看>>
Python 列表(list)、字典(dict)、字符串(string)常用基本操作小结
查看>>
Loadrunner之https协议录制回放报错如何解决?(九)
查看>>
python中xrange和range的异同
查看>>
列表、元组、集合、字典
查看>>
【Python】easygui小甲鱼
查看>>