[PHP] 使用xdebug查看php的性能损耗
程序员文章站
2022-05-23 18:40:18
xdebug除了调试程序外 , 还可以来检测程序的性能损耗点 , 展示成图表的形式 在php.ini中增加如下配置: xdebug.profiler_output_dir=/tmpxdebug.profiler_enable=1 访问程序后 , 会在tmp目录生成cachegrind.out.xxx ......
xdebug除了调试程序外 , 还可以来检测程序的性能损耗点 , 展示成图表的形式
在php.ini中增加如下配置:
xdebug.profiler_output_dir=/tmp
xdebug.profiler_enable=1
访问程序后 , 会在tmp目录生成cachegrind.out.xxxx的文件 , 把这个文件下载到我们windows系统上
下载个qcachegrind软件直接打开上面的cache文件,可以看到性能损耗和调用关系
https://sourceforge.net/projects/qcachegrindwin/
下一篇: 让百度快速收录你的网站的方法