Debugging 将xDebug与Atom一起使用

Debugging 将xDebug与Atom一起使用,debugging,xdebug,atom-editor,Debugging,Xdebug,Atom Editor,我对使用xDebug很熟悉。我正在尝试将xDebug与Atom一起使用。我使用LinuxMint作为操作系统。我的phpinfo输出如下 我的Atom设置如下所示 我成功地安装了xDebug 我的原子视图如下所示 我也在使用浏览器扩展 如何在Atom中使用xDebug进行调试?打开您的php.ini文件并将其粘贴到底部: xdebug.remote_autostart=1 xdebug.remote_enable=1 xdebug.remote_host=localhost xdebu

我对使用xDebug很熟悉。我正在尝试将xDebug与Atom一起使用。我使用LinuxMint作为操作系统。我的
phpinfo
输出如下

我的Atom设置如下所示

我成功地安装了xDebug

我的原子视图如下所示

我也在使用浏览器扩展


如何在Atom中使用xDebug进行调试?

打开您的php.ini文件并将其粘贴到底部:

xdebug.remote_autostart=1
xdebug.remote_enable=1
xdebug.remote_host=localhost
xdebug.remote_port=9000

并删除
在zend_分机之前

谢谢@Mike Deluca。您的此行
xdebug.remote\u host=localhost
帮助了我。谢谢