为什么 XDebug 会生成损坏的文件?
我在 XAMPP 安装上启用了 XDebug。 我已经使用 XDebug + Wincachegrind 来分析我的代码有一段时间了。 最近,XDebug 开始向 cachegrind.out
文件中扔一些奇怪的东西。
奇怪的东西的例子:
fl=fl=php:internal
fn=php::ini_set
127 7
。
fl=C:\xampp\htdocs\drupal-5.7\includes\session.inc
fn=sess_close
0 3
=1 0 0
72 2991
fl=C:\xampp\htdocs\drupal-5.7\includes\session.inc
fn=sess_close
0 3
ession.inc
fn=sess_close
0 2
如果重要的话,我正在编写 Drupal 模块 造成这种行为的原因是什么?
I have XDebug enabled on my XAMPP installation. I've used XDebug + Wincachegrind to profile my code for some time. Recently XDebug started throwing some weird stuff into cachegrind.out
files.
Examples of weird stuff:
fl=fl=php:internal
fn=php::ini_set
127 7
and
fl=C:\xampp\htdocs\drupal-5.7\includes\session.inc
fn=sess_close
0 3
=1 0 0
72 2991
fl=C:\xampp\htdocs\drupal-5.7\includes\session.inc
fn=sess_close
0 3
ession.inc
fn=sess_close
0 2
I'm writing Drupal modules, if it matters. What can be the cause of such behaviour?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我无法测试文件写入并发性。 如果您同时有两个请求进入同一个文件,就会发生这种情况。 诀窍是使用此处所述的设置更改文件格式。
德里克
I can't test for file writing concurrency. This happens if you have two requests at the same time that come into the same file. The trick would be to change the file format with settings as described here.
Derick