VSCode sdebooji 路径映射

VSCode xdebug pathMapping

我尝试在 visual studio 代码中设置 xdebug。 我找到了一些答案,但我都不清楚。我不确定我是否应该 post 发表评论或提出新问题

显然我必须在启动 json 文件

中设置路径映射 属性

不知道放什么

要访问我使用的服务器,http://defserver:12345 它在 ibmi 遥控器上运行 在我的电脑上,我有一个映射 X:\phptest 其中 phptest 是网络服务器的根 X: 是映射到 \defserver \PHP

那么我应该在 pathMappings 中放入什么?

谢谢

此道具映射服务器

https://github.com/felixfbecker/vscode-php-debug#remote-host-debugging

"pathMappings": {
  "<the root dir of the app on the server>": "${workspaceFolder}/<the root dir of project on your machine, relative to workspace root>",
}

根据您填入问题的数据:

"pathMappings": {
  "x:/defserver/PHP": "x:/phptest"
}

我解决了这个问题: 这似乎工作正常:

"pathMappings": {
   "///php":"${workspaceFolder}"
 }