PHPStudy + VSCode 进行 PHP 断点调试

2021-08-12 18:15:53 浏览数 (1)

下载和配置PHPStudy

开启Nginx

设置里面的扩展组件里面的XDebug调试组件打开

修改php.ini

增加Xdebug的配置

代码语言:txt复制
[Xdebug]
zend_extension=D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=On
xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace
xdebug.profiler_enable=On
xdebug.profiler_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.profiler
xdebug.remote_enable=On
xdebug.remote_autostart = On
xdebug.remote_host=localhost
xdebug.remote_port=9001
xdebug.remote_handler=dbgp

VSCode的配置

安装插件php debug

安装好后就要设置php.exe的路径

文件->首选项->设置->扩展->php->validate:executable path

添加php.ext的执行路径:"php.validate.executablePath": "D:phpstudy_proExtensionsphpphp7.3.4ntsphp.exe",根据自己选择的php版本找到相应的php.exe路径,然后保存重启VSCode

最后配置launch.json,也就是调试模式点设置,端口号保持一致就行了

代码语言:txt复制
{
    // 使用 IntelliSense 了解相关属性。 
    // 悬停以查看现有属性的描述。
    // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9001,
        },
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9001
        }
    ]
}

测试

0 人点赞