美文网首页
在vs-code中使用docker下安装的php+xdebug进

在vs-code中使用docker下安装的php+xdebug进

作者: 小山丘321 | 来源:发表于2018-05-21 17:44 被阅读0次

    ctrl+shift+p弹出选择框

    输入: extensions:install extension

    输入:php debug 安装

    输入:php litellisense 安装

    然后在上栏工具那里选择"调试"->"添加配置",修改内容为:

    {

        // 使用 IntelliSense 了解相关属性。

        // 悬停以查看现有属性的描述。

        // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387

        "version": "0.2.0",

        "configurations": [

            {

                "name": "Listen for XDebug",

                "type": "php",

                "request": "launch",

                "port": 9007,

                "pathMappings": {

                    // "容器中对应的项目地址": "本机项目地址" // 绝对路径

                    "/usr/local/nginx/html/": "/usr/local/nginx/html/"

                }

            },

            {

                "name": "Launch currently open script",

                "type": "php",

                "request": "launch",

                "program": "${file}",

                "cwd": "${fileDirname}",

                "port": 9007

            }

        ]

    }

    相关文章

      网友评论

          本文标题:在vs-code中使用docker下安装的php+xdebug进

          本文链接:https://www.haomeiwen.com/subject/agdqjftx.html