了解xdebug跟踪日志

时间:2011-01-13 21:47:38

标签: php xdebug

好!

我知道有些人会对我感到害怕,但是,我尝试搜索,找不到任何东西,所以我问这个。

  

0.4917 2292504 +1288 - > MongoCollection-> findOne()   /var/www/public_html/s.php:157

这是我的跟踪日志中的一行。前三个数字是什么意思?

我的php.ini

中有xdebug.show_mem_delta=On

MongoCollection->findOne()是函数的名称,

/var/www/public_html/s.php:157是file:line。

0.49172292504+1288是什么意思?

谢谢。

1 个答案:

答案 0 :(得分:6)

0.4917   Execution time
2292504  Memory usage
1288     Change in memory since last output

从启用了mem_delta的http://www.xdebug.org/docs/execution_trace示例开始,

0.0003     114112  +114112   -> {main}() ../trace.php:0
0.0004     114272     +160     -> str_split('Xdebug') ../trace.php:8
0.0007     117424    +3152     -> ret_ord($c = 'X') ../trace.php:10

//114112 = 114112 - 0
//160 = 114272 - 114112
//3152 = 117424 - 114272