当前位置: 首页 > 知识库问答 >
问题:

VSCode+Xdebug+PHP配置

皇甫礼骞
2023-03-14

我试图用VScode设置Xdebug,但是每当我设置断点时,它就会忽略它。

{
  "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
}
zend_extension = D:\wamp\bin\php\php7.1.16\ext\php_xdebug-2.6.1-7.1-vc14.dll

[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_host=localhost
xdebug.remote_port=9000
xdebug.remote_log=D:\wamp\logs\xdebug.log

PHP-V

$ php -v
PHP 7.1.16 (cli) (built: Mar 28 2018 21:27:36) ( ZTS MSVC14 (Visual C++ 2015) x8
6 )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
with Xdebug v2.6.1, Copyright (c) 2002-2018, by Derick Rethans

感谢您的阅读!

共有1个答案

楚宪
2023-03-14

我相信您的php.ini可能需要以下内容:

xdebug.remote_connect_back=1

有关WPLib Box的PHP容器,请参见XDEBUG.ini,它肯定可以使用XDEBUG和VS代码

 类似资料:
  • 本文向大家介绍PHP远程调试之XDEBUG,包括了PHP远程调试之XDEBUG的使用技巧和注意事项,需要的朋友参考一下 开发的时候我都是使用XDebug在本地调试,但是最近加入一些项目中去,环境太复杂了,要在本地搭建一个开发环境真的太麻烦了,那么我们怎么使用xdebug来远程调试呢? 我这里使用虚拟机搭建了一个模拟环境来实验说明: 1.虚拟机IP:192.168.174.130 ,虚拟机用于搭建l

  • 我读了很多答案,但不明白为什么xdebug不起作用。 php.ini: php-v: /usr/lib/php5/20090626/xdebug。确实存在。php中没有zend优化器。伊尼。 如果我尝试安装xdebug: 提前谢谢。

  • 我有一个OS-X设置,并使用Netbeans IDE进行PHP编程。我已经在以下路径中安装了xdebug zend_extension=“/Applications/MAMP/bin/php/php5.3.6/lib/php/extensions/no-debug-non-zts-20090626/xdebug.so” 在它下面我有xdebug。远程\u启用设置为打开。。例如xdebug。远程启用

  • 我尝试使用XDebug(php模式'./confiure''--with-apxs2=/usr/sbin/apxs'--enable-debug=YES')。 在xdebug的留档中:“如果你自己编译了PHP并使用了--enable-debug,你必须使用zend_extension_debug”。 但是,在输出中phpinfo()模块未加载(我也尝试使用zend_扩展)。 也许XDebug需要一

  • 本文向大家介绍phpstorm 配置xdebug的示例代码,包括了phpstorm 配置xdebug的示例代码的使用技巧和注意事项,需要的朋友参考一下 最近买了个新本,重新配置下phpstorm xdebug,方便调试 提高调试效率是写程序的第一步 ---鲁迅 自2018年3月份之后,brew 安装php的方式发生改变,现在是 可以指定版本了,安装扩展的方式也完全不能用了,所以下载源码编译了 下载

  • Xdebug is an extension for PHP to assist with debugging and development. It contains a single step debugger to use with IDEs it upgrades PHP's var_dump() function it adds stack traces for Notices, War