phpstrom安装调试

1.phpinfo里有没有这个xdebug信息,没有就看源码,复制粘贴进https://xdebug.org/wizard.php

2.把文件下载到php的ext文件夹

3.配置phpini

[XDebug]
xdebug.profiler_output_dir="E:\myphp_www\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="E:\myphp_www\PHPTutorial\tmp\xdebug"
zend_extension = E:\myphp_www\PHPTutorial\php\php-7.0.12-nts\ext\php_xdebug-2.6.1-7.0-vc14-nts.dll  //那个网页有相关内容,替换就行
xdebug.remote_enable = 1
xdebug_remote_host = “localhost”
xdebug.remote_port = 9000
xdebug.idekey="PHPSTORM"
xdebug.remote_handler=dbgp
xdebug.romote_model=req

 

安装debug过程

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-14
  • 2021-11-23
  • 2022-01-14
  • 2021-09-09
  • 2021-10-30
猜你喜欢
  • 2021-10-11
  • 2021-06-12
  • 2021-05-15
  • 2021-05-28
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案