VS Code(XDebug插件)调试PHP

在你会浏览这篇文章,说明你已经安装好了VS Code IDE编辑器。
首先需要安装PHP-xdebug扩展文件,先到php-xdebug下载,https://xdebug.org/wizard.php
可以使用phpinfo();查看你当前php版本。
VS Code(XDebug插件)调试PHP_第1张图片
VS Code(XDebug插件)调试PHP_第2张图片
在VS Code中搜索PHP-XDebug插件
VS Code(XDebug插件)调试PHP_第3张图片
打开php安装根目录,编辑php.ini,添加以下内容。

[XDebug]
zend_extension="F:\devloper\php-5.6.30\ext\php_xdebug-2.5.3-5.6-vc11-x86_64.dll"
xdebug.profiler_enable=1
xdebug.remote_autostart = 1
xdebug.profiler_output_dir="F:\devloper\php-5.6.30\tmp"
xdebug.remote_port=9000  
xdebug.remote_enable=on  
xdebug.remote_handler = dbgp
xdebug.romote_host=localhost

VS Code(XDebug插件)调试PHP_第4张图片
在 phpinfo 中查看 xdebug 扩展的信息,验证是否开启成功
VS Code(XDebug插件)调试PHP_第5张图片
VS Code配置
File—》Preference—》Settings
VS Code(XDebug插件)调试PHP_第6张图片
settings.json文件如下:

{
    "php.validate.executablePath": "F:/devloper/php-5.6.30/php.exe"
}

VS Code(XDebug插件)调试PHP_第7张图片

VS Code(XDebug插件)调试PHP_第8张图片
.新建 debug 配置,并选择调试语言
VS Code(XDebug插件)调试PHP_第9张图片
设置断点
VS Code(XDebug插件)调试PHP_第10张图片
浏览器访问后,有断点就跳到VS Code编辑器。
VS Code(XDebug插件)调试PHP_第11张图片

你可能感兴趣的:(PHP,ThinkPHP)