使用 VSCode 与 Xdebug 调试

Xdebug 配置

本机用的Wamp

// 远程调试
xdebug.remote_enable = On  
xdebug.remote_autostart = On

// 一台服务器多开发者配置
// 如果开启,将忽略下面的 xdebug.remote_host 的参数。
xdebug.remote_connect_back = On    
// 本机编辑器的IP
xdebug.remote_host = 192.168.1.220 

// 远程调试日志
xdebug.remote_log = "D:/wamp64/tmp/xdebug.log"

// 分析日志存储
xdebug.profiler_enable = On
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.profiler_output_dir ="D:/wamp64/tmp"

VSCode 配置

搜索并安装 php-debug 具体配置如下:

{
    "configurations": [
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9000,
            "serverSourceRoot": "D:/wamp64/www/test",  # 远程网站目录
            "localSourceRoot": "${workspaceRoot}"   # 远程网站域名
        },
        {
            "name": "Launch currently open script",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "port": 9000
        }
    ]
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值