博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
xdebug + wincachegrind
阅读量:4597 次
发布时间:2019-06-09

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

;;;;;;;php.ini;;;;;;;;;;;;;;;;;;

[Xdebug]

zend_extension=D:\Xampp\php\ext\php_xdebug.dll
;开启自动跟踪
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.collect_params = On

;;phpstorm

xdebug.remote_handler = dbgp
xdebug.remote_host= localhost
xdebug.remote_port = 9000
xdebug.idekey = PHPSTORM

;;wincachegrind

xdebug.profiler_enable=On
xdebug.trace_output_dir="D:/wincachegrind"
xdebug.profiler_output_dir="D:/wincachegrind"

 

----------------------------------------------------------------------------------

xdebug使用简单配置

xdebug.remote_enable=1

xdebug.remote_handler=dbgp
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.idekey=PHPSTORM

 

转载于:https://www.cnblogs.com/web21/p/6088674.html

你可能感兴趣的文章
C#多线程学习(五) 多线程的自动管理(定时器)
查看>>
第三次作业
查看>>
物体坐标to世界坐标
查看>>
上传图片进行预览
查看>>
Git学习笔记(二)
查看>>
[翻译]OAuth入门指南 – 1.概述
查看>>
<context:component-scan/>和<mvc:annotation-driven/>的区别
查看>>
Android 命名规范 (提高代码可以读性)
查看>>
C# Emit动态代理生成一个实体对象
查看>>
geoserver发布mysql表数据
查看>>
LeetCode-121 Best Time to Buy and Sell Stock
查看>>
实验四:数据类型与运算符 4、运算符及表达式实训
查看>>
poj2318
查看>>
互联网产品重构
查看>>
编程之美-2.19-区间重合判断
查看>>
游戏中心-内购—应用内购买修改应用程序信息
查看>>
python: can't open file 'h.py': [Errno 2] No such file or directory
查看>>
PHP Include 文件
查看>>
网站首页加载动态数据的方法
查看>>
09-Python之迭代器,生成器
查看>>