在win10环境下的vscode中使用xdebug进行PHP断点调试

第一步、下载VScode和phpstudy

具体下载网址我放到下面

VScode:Visual Studio Code - Code Editing. RedefinedVisual Studio Code - Code Editing. RedefinedVisual Studio Code - Code Editing. Redefined

phpstudy:小皮面板(phpstudy) - 让天下没有难配的服务器环境! (xp.cn)

第二步:在phpstudy中启用xdebug扩展

网站 ----> 管理---->php扩展---->xdebug

在win10环境下的vscode中使用xdebug进行PHP断点调试_第1张图片

 第三步、打开php安装路径下的php.ini,并且修改配置

php.ini具体查找路径如下:

在win10环境下的vscode中使用xdebug进行PHP断点调试_第2张图片

 以本人为例:

本人将php安装在D:\software\computing\NSP\phpstudy路径下

php.ini文件夹则在D:\software\computing\NSP\phpstudy\phpstudy_pro\Extensions\php\php7.3.4nts路径下

注意:你要寻找对于php版本的phpx.x.xnts文件夹

在win10环境下的vscode中使用xdebug进行PHP断点调试_第3张图片

 如果各位找不到后缀名,在导航窗口中点击查看,将文件扩展名勾选即可 

在win10环境下的vscode中使用xdebug进行PHP断点调试_第4张图片

[Xdebug]
 
zend_extension=D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_trace=On
xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace
xdebug.profiler_enable=On
xdebug.profiler_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.profiler
xdebug.remote_enable=On
xdebug.remote_autostart = On 
xdebug.remote_host=localhost
xdebug.remote_port=9001
xdebug.remote_handler=dbgp

注意:端口最好不要用9000,不然会跟Nginx冲突

第四步、修改vscode配置

文件 ----> 首选项 ----> 设置

在win10环境下的vscode中使用xdebug进行PHP断点调试_第5张图片

 点击:在settings.json中编辑 在win10环境下的vscode中使用xdebug进行PHP断点调试_第6张图片

 在其中添加自己安装的php路径

一定要确定自己的安装路径是否正确!!!

"php.debug.executablePath": "D:\\software\\computing\\NSP\\phpstudy\\phpstudy_pro\\Extensions\\php\\php7.3.4nts.\\php.exe",
  "php.validate.executablePath": "D:\\software\\computing\\NSP\\phpstudy\\phpstudy_pro\\Extensions\\php\\php7.3.4nts\\php.exe"

在win10环境下的vscode中使用xdebug进行PHP断点调试_第7张图片

第五步、安装插件

PHP Debug

PHP Intelephense

PHP Xdebug 

在win10环境下的vscode中使用xdebug进行PHP断点调试_第8张图片

注意:PHP Xdebug  如下图所示的错误,可以选择安装旧版本0.6

在win10环境下的vscode中使用xdebug进行PHP断点调试_第9张图片

第六步、配置launch.json,注意端口号要跟php.ini中一致 (不然会被占用)

1、首先要创建一个test测试文件夹,并且确保:

test文件夹一定要放在php安装路径的WWW文件夹中

在win10环境下的vscode中使用xdebug进行PHP断点调试_第10张图片

 2、将test文件夹在VScode中打开

在win10环境下的vscode中使用xdebug进行PHP断点调试_第11张图片

在win10环境下的vscode中使用xdebug进行PHP断点调试_第12张图片

 3、配置launch.json

{
    "configurations": [
        {
            "name": "Launch current script in console",
            "type": "php",
            "request": "launch",
            "program": "${file}",
            "cwd": "${fileDirname}",
            "externalConsole": false,
            "port": 9001
        },
        {
            "name": "Listen for XDebug",
            "type": "php",
            "request": "launch",
            "port": 9001
        }
    
    ]
}

在win10环境下的vscode中使用xdebug进行PHP断点调试_第13张图片

4、在test文件夹中新建一个index.php文件,配置如下 

在win10环境下的vscode中使用xdebug进行PHP断点调试_第14张图片

第七步、设置断点,开始调试

在php中打开Apache

在win10环境下的vscode中使用xdebug进行PHP断点调试_第15张图片

 在win10环境下的vscode中使用xdebug进行PHP断点调试_第16张图片在win10环境下的vscode中使用xdebug进行PHP断点调试_第17张图片

 再次刷新即可

 在win10环境下的vscode中使用xdebug进行PHP断点调试_第18张图片

遇到大坑

将正在使用的php加入环境变量。因为phpstudy默认是没有将php加入环境变量钟的,结果就是无论你怎么写配置都注定以失败告终,而且没有错误提示。

在win10环境下的vscode中使用xdebug进行PHP断点调试_第19张图片

你可能感兴趣的:(网络渗透防御,vscode,php,ide)