Xdebug v3.0.2 搭配 PHP v8.0.0 [英] Xdebug v3.0.2 with PHP v8.0.0

查看:31
本文介绍了Xdebug v3.0.2 搭配 PHP v8.0.0的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我刚刚使用 XAMPP v3.2.4 迁移到 php v8.0.0.但是 Xdebug 不起作用.执行不会在断点处停止.

I just have migrated to php v8.0.0 with XAMPP v3.2.4. But Xdebug is not working. Execution is not stopping on breakpoints.

我的安装说明-

Download php_xdebug-3.0.2-8.0-vs16-x86_64.dll
Move the downloaded file to \xampp\php\ext
Update D:\xampp\php\php.ini and change the line
zend_extension = \xampp\php\ext\php_xdebug-3.0.2-8.0-vs16-x86_64.dll
Restart the webserver

这里是安装摘要-

Xdebug installed: 3.0.2
Server API: Apache 2.0 Handler
Windows: yes
Compiler: MS VS16
Architecture: x64
Zend Server: no
PHP Version: 8.0.0
Zend API nr: 420200930
PHP API nr: 20200930
Debug Build: no
Thread Safe Build: yes
OPcache Loaded: no
Configuration File Path: no value
Configuration File: D:\xampp\php\php.ini
Extensions directory: \xampp\php\ext

php.ini

[XDebug]
xdebug.remote_enable = 1
zend_extension = D:\xampp\php\ext\php_xdebug-3.0.2-8.0-vs16-x86_64.dll
xdebug.start_with_request=yes
xdebug.remote_autostart=1
xdebug.mode=debug
xdebug.discover_client_host = true

VS Code launch.json -

VS Code launch.json -

{
"version": "0.2.0",
"configurations": [
    {
        "name": "Listen for XDebug",
        "type": "php",
        "request": "launch",
        "port": 9003,
        "pathMappings": {
            "your filepath": "${workspaceRoot}",
        }
    },
    {
        "name": "Launch currently open script",
        "type": "php",
        "request": "launch",
        "program": "${file}",
        "cwd": "${fileDirname}",
        "port": 9000
    }
  ]
}

推荐答案

以下几行解决了我的问题 -

The following lines solved my problem -

在 php.ini -

in php.ini -

xdebug.remote_port = "9003"  //added this line

在launch.json中

in launch.json

{

"version": "0.2.0",
"configurations": [
    {
        "name": "Listen for XDebug",
        "type": "php",
        "request": "launch",
        "port": 9003    //changed from 9000 to 9003
    },
    {
        "name": "Launch currently open script",
        "type": "php",
        "request": "launch",
        "program": "${file}",
        "cwd": "${fileDirname}",
        "port": 9003,  //added this line
        "runtimeExecutable": "D:\\xampp\\PHP\\php.exe"    //added this line
    }
]
}

这篇关于Xdebug v3.0.2 搭配 PHP v8.0.0的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆