Index.php在一个请求中两次调用

时间:2019-11-19 16:07:54

标签: php phpstorm xdebug

我有错误或其他东西。我注意到了,因为我的路由被多次调用了。删除许多行后,我只得到了index.php。 index.php现在仅包含$var=1;,但它还会多次触发Xdebug。

有人知道如何解决它或为什么会发生吗?

如果这是问题,这是我的Xdebug设置:

xdebug.remote_enable=true
xdebug.profiler_output_dir="C:\xampp2\tmp"
xdebug.idekey="PHPSTORM"
xdebug.remote_autostart = on
xdebug.profiler_output_name = "cachegrind.out.%u.%H_%R"

1 个答案:

答案 0 :(得分:2)

正如LazyOne所指出的,这是因为缺少Favicon。谢谢。解决方法是添加:

select t.*,
       sum(case when prev_value > 100 and value > 100 then 0
                when prev_value <= 100 and value <= 100 then 0
                else 1
           end) over (order by id) as grp
from (select t.*,
             lag(value) over (order by id) as prev_value
      from t
     ) t;