scaoping 发表于 2018-11-26 06:26:11

php+apache+XDebug使用安装

;xdebug配置  
  ;开启自动跟踪
  xdebug.auto_trace = On
  ;开启异常跟踪
  xdebug.show_exception_trace = On
  ;开启远程调试自动启动
  xdebug.remote_autostart = On
  ;开启远程调试
  xdebug.remote_enable = On
  ;收集变量
  xdebug.collect_vars = On
  ;收集返回值
  xdebug.collect_return = On
  ;收集参数
  xdebug.collect_params = On

页: [1]
查看完整版本: php+apache+XDebug使用安装