Hello! 欢迎来到小浪资源网!


Xdebug远程自动启动导致卡顿?如何解决?


Xdebug远程自动启动导致卡顿?如何解决?

xdebug卡顿问题探析:remote autostart的陷阱

对于使用xdebug调试php应用程序的开发者,可能会遇到这样一个问题:将xdebug.remote_autostart设置为1后,所有请求都会卡顿,甚至直接导致504错误。

症结所在

当xdebug.remote_autostart启用时,xdebug会在所有请求开始时自动启动远程调试会话,即使没有设置明确的断点。在没有断点的情况下,这会导致xdebug持续检查传入的请求,导致应用程序响应延迟。

解决方案

为了解决这个问题,可以在不携带Cookie或会话id的情况下,通过get或post参数传递xdebug_session_start参数来启动远程调试会话。

  1. get请求:在请求url后面附加?xdebug_session_start=1,例如:

    http://example.com/index.php?xdebug_session_start=1
  2. post请求:在请求正文中使用xdebug_session_start参数,例如:

     $data = array('XDEBUG_SESSION_START' => 1);  $options = array(      'http' => array(          'method' => 'POST',          'content' => http_build_query($data)      ),  );  $context = stream_context_create($options);  file_get_contents('http://example.com/index.php', false, $context);

参考文档

更多有关xdebug远程调试配置的信息,请参阅官方文档:[xdebug: step debugging](https://xdebug.org/docs/step_debugging)

相关阅读