4

我正在使用 phpstorm 和 xdebug 扩展来调试我的 php 代码,当我在请求结束时激活调试时,我看到白页,没有响应,如果我停用调试器帮助程序,页面将成功呈现。

正常吗?

4

1 回答 1

1

在 php.ini 中为 xdebug 设置这些值对我有帮助:

xdebug.default_enable=1
xdebug.remote_autostart=1
xdebug.remote_connect_back=On
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_port=9000
xdebug.remote_host=localhost

我有一个问题,Vagrant 不会与 Phpstorm 成为朋友。我能够在脚本的第一行设置断点,但它并没有更进一步,只是返回了一个空行。

于 2017-07-18T21:21:23.237 回答