我是靠谱客的博主 爱撒娇导师,最近开发中收集的这篇文章主要介绍如何使用Visual Studio Code调试PHP CLI应用和Web应用,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

在按照Jerry的公众号文章 什么?在SAP中国研究院里还需要会PHP开发? 进行XDebug在本地的配置之后,如果想使用Visual Studio Code而不是Eclipse来调试PHP应用,步骤也比较简单。

启动WAMP服务器,确保xdebug.remote_autostart, xdebug.remote_enable都为on:

webp

然后安装Visual Studio Code的扩展:PHP Debug

webp

安装完毕后,File->Preferences->Settings:

webp

添加一条entry:php.validate.executablePath, 指向你本地的php.exe

创建一个PHP debug configuration,有两种方式选择:
Launch current open script和Listen for Xdebug:

webp


webp
{
    // Use IntelliSense to learn about possible attributes.
    // Hover to view descriptions of existing attributes.
    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",    "configurations": [
        {            "name": "Listen for XDebug",            "type": "php",            "request": "launch",            "port": 9000
        },
        {            "name": "Launch currently open script",            "type": "php",            "request": "launch",            "program": "${file}",            "cwd": "${fileDirname}",            "port": 9000,            "runtimeExecutable":"C:\MyApp\wamp20190709\bin\php\php7.0.10\php.exe"
        }
    ]
}

前者调试PHP CLI应用比较方便,打开一个php文件,直接F5,断点即触发。

webp


webp

如果选择成Listen for XDebug,同样先F5启动调试进程,

webp

然后浏览器里访问待调试的PHP文件,Visual Studio Code的断点即触发,可以单步调试了:

webp

要获取更多Jerry的原创文章,请关注公众号"汪子熙":


webp


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/24475491/viewspace-2651684/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/24475491/viewspace-2651684/

最后

以上就是爱撒娇导师为你收集整理的如何使用Visual Studio Code调试PHP CLI应用和Web应用的全部内容,希望文章能够帮你解决如何使用Visual Studio Code调试PHP CLI应用和Web应用所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(36)

评论列表共有 0 条评论

立即
投稿
返回
顶部