8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

windows7+vscode+xamppでデバッグ

8
Last updated at Posted at 2018-02-02

launch.jsonの設定にダダはまり。
windowsでやろうとすると、pathの設定とかが各種資料と違うんだよねw
localsourcerootは、deprecatedと言われるたので、pathMappingsに変更。メッセージがきちんと出るのが親切だなぁ。
自分が作るシステムもそうしたい。

image.png

C:\work\git\aaaa.vscode\launch.json

{
    // IntelliSense を使用して利用可能な属性を学べます。
    // 既存の属性の説明をホバーして表示します。
    // 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000,
            "log": true,
            "pathMappings": {
                "${workspaceRoot}": "${workspaceRoot}"
            }
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "log": true,
            "program": "${file}",
            "cwd": "${fileDirname}",
            "pathMappings": {
                "C:\\aaa\\bbb\\cccc": "${workspaceRoot}"
            },
            "port": 9000,
            "runtimeExecutable": "C:\\xampp\\php\\php.exe"
        }
    ]
}

止まったw
image.png

8
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?