我在X.bb的PHP.ini文件中有以下设置。
[XDebug]
;; Only Zend OR (!) XDebug
zend_extension_ts ="C:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable=true
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9001
xdebug.remote_handler=dbgp
xdebug.profiler_enable=1
xdebug.profiler_output_dir="C:\xampp\tmp"
答案 0 :(得分:1)
您需要将名为XDEBUG_PROFILE
的Cookie发送到服务器。您可以使用浏览器插件为您执行此操作,例如easy Xdebug (Firefox)或Xdebug helper (Chrome)。
如果您想让调试器保持活动状态,可以将此行添加到php.ini
:
xdebug.remote_autostart = 1