想你了的他他 发表于 2018-12-15 12:21:35

php xhprof 性能测试

将xhprof_lib&&xhprof_html相关目录copy到可以访问到的地址  
访问 xxx/xhprof_html/index.php?run=$run_id&source=xhprof 就可经看到你的php代码运行的相关情况
  

  
下面是一些参数说明
  
Inclusive Time               包括子函数所有执行时间。
  
Exclusive Time/Self Time       函数执行本身花费的时间,不包括子树执行时间。
  
Wall Time                      花去了的时间或挂钟时间。
  
CPU Time                     用户耗的时间+内核耗的时间
  
Inclusive CPU                  包括子函数一起所占用的CPU
  
Exclusive CPU                  函数自身所占用的CPU


页: [1]
查看完整版本: php xhprof 性能测试