有人知道如何配置VS Code在Drupal VM上使用Xdebug吗?
我已经用Xdebug为我的Drupal-VM提供了证明,如: http://docs.drupalvm.com/en/latest/extras/xdebug/
但是下一步该怎么做?
我在VS Code中的调试配置应该像这样吗?:
{
"name": "Listen for XDebug",
"type": "php",
"request": "launch",
"port": 9969,
"pathMappings": {
"http://drupalvm.test": "/D:/test_bazy_sql/drupal/drupal_sites/drupal-vm/drupal/web"
},
}
我使用哪个PHP没关系吗? VS Code中我的settings.json文件中的相关行:
"php.validate.executablePath": "C:\\php2\\php.exe",
"phpserver.browser": "edge",
"phpserver.phpPath": "C:\\php2\\php.exe",
"php.validate.run": "onType",
我在php.ini文件中的Xdebug设置如下:
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_port = 9969
xdebug.remote_log="D:\xdebug.log"
xdebug.remote_timeout = 900
xdebug.remote_connect_back = 1
我将感谢您的任何建议。