vscode调试php

Posted baikaishui-liang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vscode调试php相关的知识,希望对你有一定的参考价值。

  1. xdebug调试vscode
    1. 下载xdebug.dll扩展库
    2. php.ini配置
      1.   
        1 [XDebug]
        2 xdebug.remote_enable = 1
        3 xdebug.remote_autostart = 1
        4 zend_extension="D:\phpstudy-2018\PHPTutorial\php\php-5.5.38\ext\php_xdebug.dll"

         

    3. vscode 安装插件 php debug,php xdebug 
      1.   
         1       add configuration:
         2          
         3             "name": "Listen for XDebug",
         4             "type": "php",
         5             "request": "launch",
         6             "port": 9000
         7         ,
         8         
         9             "name": "Launch currently open script",
        10             "type": "php",
        11             "request": "launch",
        12             "program": "$file",
        13             "cwd": "$fileDirname",
        14             "port": 9000
        15         

         

    4. 调试时有两个选项:选择"Listen for XDebug"标示自己打开浏览器,输入网址-进入断点。

      选择"Launch currently open script"标示调试当前文件。

以上是关于vscode调试php的主要内容,如果未能解决你的问题,请参考以下文章

vscode点击调试然后什么反应都没有,是vscode坏掉了吗

vscode调试pomelo和pomelo使用vscode调试

vscode怎么调试c语言 调试步骤

VSCode 调试

vscode为啥不能调试c语言

vscode只能调试英文名的文件吗