XDebug 未分析 POST

XDebug not profiling POST

我如何配置 XDebug 来分析 ALL 请求、POST、GET、Ajax,有无查询字符串参数?

当前配置(下方)仅为 GET 请求和没有查询字符串参数的 POST 请求创建配置文件 (cachegrind.out)。

/etc/php5/apache2/conf.d/20-xdebug.ini

zend_extension = /usr/lib/php5/20121212/xdebug.so
xdebug.profiler_enable_trigger = 1
xdebug.profiler_enable = 0
xdebug.profiler_append = 0

conf.d/my.conf

<Directory "/var/www/html/sub">
        # Limit profiling to files in this directory
        RewriteEngine On
        RewriteRule (.*\.php) ?XDEBUG_PROFILE=1 [QSA,L]
</Directory>

Ubuntu 14.04.5 LTS

PHP Version 5.5.9-1ubuntu4.21

XDebug version 2.5.1

问题的根源在于 POST 请求的配置文件被下一个客户端重定向请求覆盖。解决方案是使用不同的探查器输出文件名

参考:https://bugs.xdebug.org/view.php?id=1445

xdebug.profiler_output_name=cachegrind.out.%s

非常感谢 XDebug 团队。