Vagrant(WSL)+PHPStorm+Xdebug 断点调试环境搭建

时间:2022-09-03 13:08:22

1.Vagrant (LInux)环境下 Xdebug 配置 :

  1. zend_extension=xdebug.so
  2. xdebug.remote_enable = 1
  3. xdebug.remote_connect_back = 1
  4. xdebug.remote_port = 9100
  5. xdebug.idekey = "PHPSTORM"
  6. xdebug.remote_autostart = 1
  7. xdebug.remote_handler="dbgp"
  8. xdebug.remote_mode="req"

2.PHPtorm 配置:

Vagrant(WSL)+PHPStorm+Xdebug 断点调试环境搭建

设置好端口,和Xdebug 设置的一样:

Vagrant(WSL)+PHPStorm+Xdebug 断点调试环境搭建

设置好 目录映射,这很关键

Vagrant(WSL)+PHPStorm+Xdebug 断点调试环境搭建

配置完成,测试debug

RUN->Start Listening for PHP debug connections->打断点->debug

Vagrant(WSL)+PHPStorm+Xdebug 断点调试环境搭建

浏览器访问网站, PHPstorm 那边访问搞定!!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持我们。

原文链接:https://segmentfault.com/a/1190000021274131