xdebug给出致命错误:找不到类

时间:2019-01-02 01:59:20

标签: php visual-studio-code xdebug

我已经安装了xdebug,并且我认为我已经正确安装了它。当我在终端中运行php -v时,它显示了“ with xDebug v2.6.1”。查看phpinfo(),它确实显示了xdebug扩展名。在终端上运行php -m确实会在[Zend模块]下显示Xdebug。

现在,我正在尝试将其设置为VS Code。我已安装扩展PHP Debug,已安装Chrome扩展xdebug。

现在的问题是,当我从VS Code运行F5时,它将出现致命错误:未找到类'ParentClass'。

我正在Windows 10上运行PHP v7.0.30,服务器是IIS。

我的php.ini:

[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_port = 9000
xdebug.autostart = 1
xdebug.remote_log = "C:\Program Files (x86)\IIS Express\PHP\v7.0\tmp\xdebug.log"
zend_extension = "C:\Program Files (x86)\IIS Express\PHP\v7.0\ext\php_xdebug-2.6.1-7.0-vc14-nts.dll"

有什么主意吗?

0 个答案:

没有答案