VScode 配置php debug

一、先到http://pecl.php.net/package/xdebug 下载对应版本的xdebug,我本机用的php study,下载的是2.6的稳定版。

二、配置php.ini

 本来没有加 remote_autostart,我滴妈呀,整了好久。一定要加上。

[XDebug]
xdebug.remote_enable = 1
xdebug.remote_autostart = 1
xdebug.remote_host= 10.64.130.19
xdebug.remote_port = 9000
xdebug.profiler_output_dir="e:\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="e:\phpStudy\PHPTutorial\tmp\xdebug"
zend_extension="E:\phpStudy\PHPTutorial\php\php-7.1.13-nts\ext\php_xdebug.dll"

三、vscode下载安装php-debug。

四、vscode 文件--配置--首选项,搜索 set, 在setting.json中编辑,添加

"php.validate.executablePath": "E:\\phpStudy\\PHPTutorial\\php\\php-7.1.13-nts\\php.exe",

四、配置launch.json文件。

{
  "configurations": [
    {
      "name": "Listen for XDebug",
      "type": "php",
      "request": "launch",
      "port": 9000
    },
    {
      "name": "Launch currently open script",
      "type": "php",
      "request": "launch",
      "program": "${file}",
      "cwd": "${fileDirname}",
      "port": 9000
    }
  ]
}

OK了,齐活!

 

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值