VSCode xdebug pathMapping

问题描述 投票:0回答:2

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

显然我必须在启动json文件中设置pathMappings属性

我不知道该放什么

要访问服务器,我使用http://defserver:12345它运行在ibmi远程Om我的计算机上我有一个映射X:\ phptest其中phptest是webserver的十字架X:是映射到\ defserver \ PHP

那么我应该把什么放进pathMappings?

谢谢

visual-studio-code xdebug vscode-settings
2个回答
0
投票

该道具映射服务器

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"
}

0
投票

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

"pathMappings": {
   "///php":"${workspaceFolder}"
 }
© www.soinside.com 2019 - 2024. All rights reserved.