xdebug profiler laravel 5.5 windows empty grindfile

时间:2017-09-15 18:37:23

标签: php laravel xdebug-profiler

我正在尝试使用xdebug 2.5.5 php version 7.0.0在Windows 8.1机器上配置Laravel 5.5应用程序。 php正在运行为cgi

调试工作非常好我可以调试但是探查器文件充满了这个Laravel错误(这只是使用Laravel应用程序,在简单的php文件分析中工作正常):

version: 1 creator: xdebug 2.5.5 (PHP 7.0.15-dev)
cmd: D:\www\laravel55\vendor\laravel\framework\src\Illuminate\Foundation\Bootstrap\HandleExceptions.php
part: 1
positions: line

events: Time

fl=(1)
fn=(2770) php::error_get_last
122 0

fl=(1)
fn=(74)
122 0

fl=(88)
fn=(2771) Illuminate\Foundation\Bootstrap\HandleExceptions->handleShutdown
120 73
cfl=(1)
cfn=(2770)
calls=1 0 0
122 0
cfl=(1)
cfn=(74)
calls=1 0 0
122 0

我尝试过xdebug 2.5.5 php version 7.1.9。同样的事情。

这是xdebug设置:

[Xdebug]
zend_extension="D:\AppServ\xdebug\php_xdebug-2.5.5-7.1-vc14-nts.dll"
xdebug.remote_enable=1
;xdebug.remote_port="<the port for Xdebug to listen to>" (the default port is 9000)
xdebug.profiler_enable=0
xdebug.profiler_enable_trigger=1
xdebug.profiler_enable_trigger_value=1
xdebug.remote_autostart=1
xdebug.profiler_output_dir="D:\AppServ\xdebug\tmp"
xdebug.idekey="PHPSTORM"

1 个答案:

答案 0 :(得分:1)

网格文件可能为空,因为它在同一请求中被多次覆盖。

您可以将时间戳+脚本位置添加到文件名中以防止这种情况:

xdebug.profiler_output_name = "cachegrind.out.%t-%s"