如何在HHVM 3.3.0上启用xdebug?

Pav*_*yuk 6 php debugging ubuntu xdebug hhvm

我正在尝试为我的虚拟Ubuntu 14.04设置远程调试.

我在我的HHVM 3.3.0上启用了xdebug,将其添加到server.ini:

hhvm.xdebug-not-done.enable=1
hhvm.xdebug-not-done.remote_enable=1
Run Code Online (Sandbox Code Playgroud)

但它对我不起作用.我应该执行任何其他动作才能使其正常工作吗?

Ste*_*ain 6

不再支持HHVM 3.3,但是因为HHVM 3.4你不需要-not-done你的配置(是的,它是稳定的!).例如

xdebug.enable=1
xdebug.remote_enable=1
xdebug.remote_connect_back=1
xdebug.idekey="PHPSTORM"
xdebug.remote_host="localhost"
xdebug.remote_port=9089
Run Code Online (Sandbox Code Playgroud)

参考:JetBrains Youtrack上的HHVM调试器支持