XDebug 跟踪中内存值的单位是什么?
Xdebug 跟踪中内存值的单位是什么?字节?
例如,我有以下几行:
TRACE START [2011-11-30 13:11:18]
0.2122 2618704 +489048 -> require_once(...) ...:8
...
0.4147 6847864 +64 -> strtr(string(34), array(128)) ...:21
那么,6847864 = 6.5MB 吗?
What is the unit for memory values in Xdebug traces? bytes?
For instance, I have these lines:
TRACE START [2011-11-30 13:11:18]
0.2122 2618704 +489048 -> require_once(...) ...:8
...
0.4147 6847864 +64 -> strtr(string(34), array(128)) ...:21
So, does 6847864 = 6.5MB?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它与
memory_get_usage
相同(以及 PHP 中有关内存的任何其他通知):It is the same as
memory_get_usage
(and basicly any other notification about memory in PHP):