当前位置:首页 > PHP教程 > php环境安装 > 列表

phpStudy vscode 搭建debug调试的教程详解

发布:smiling 来源: PHP粉丝网  添加日期:2022-03-20 09:25:15 浏览: 评论:0 

这篇文章主要介绍了phpStudy vscode 搭建debug调试的教程,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友可以参考下。

下载地址

phpstudy:https://www.xp.cn/download.html

vscode:https://code.visualstudio.com/ 设置

phpstudy版本:7.3.4nts

phpStudy vscode 搭建debug调试的教程详解

  1. [Xdebug] 
  2. zend_extension=D:/phpstudy_pro/Extensions/php/php7.3.4nts/ext/php_xdebug.dll 
  3. xdebug.collect_params=1 
  4. xdebug.collect_return=1 
  5. xdebug.auto_trace=On 
  6. xdebug.trace_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.trace 
  7. xdebug.profiler_enable=On 
  8. xdebug.profiler_output_dir=D:/phpstudy_pro/Extensions/php_log/php7.3.4nts.xdebug.profiler 
  9. xdebug.remote_enable=On 
  10. xdebug.remote_autostart=On 
  11. xdebug.remote_host=localhost 
  12. xdebug.remote_port=9000 
  13. xdebug.remote_handler=dbgp 
  14. vscode : 

ctrl+,调出setting,或则文件->首选项->设置

phpStudy vscode 搭建debug调试的教程详解

php路径设置

  1.   "window.zoomLevel": 1, 
  2.   "git.confirmSync": false, 
  3.   "git.autofetch": true, 
  4.   "[javascript]": { 
  5.     "editor.defaultFormatter""vscode.typescript-language-features" 
  6.   }, 
  7.   //关键点 
  8.   "php.validate.executablePath""D:/phpstudy_pro/Extensions/php/php7.3.4nts/php.exe" 

Xdebug设置

  1.   // 使用 IntelliSense 了解相关属性。  
  2.   // 悬停以查看现有属性的描述。 
  3.   // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 
  4.   "version""0.2.0"
  5.   "configurations": [ 
  6.     { 
  7.       "name""Listen for XDebug"
  8.       "type""php"
  9.       "request""launch"
  10.       //端口 
  11.       "port": 9000 
  12.     }, 
  13.     { 
  14.       "name""Launch currently open script"
  15.       "type""php"
  16.       "request""launch"
  17.       "program""${file}"
  18.       "cwd""${fileDirname}"
  19.       //端口 
  20.       "port": 9000 
  21.     } 
  22.   ] 

验证

phpStudy vscode 搭建debug调试的教程详解

vscode F5启动调试

浏览器输入:localhost/test.php

phpStudy vscode 搭建debug调试的教程详解

Tags: phpStudy搭建debug调试

分享到: