phpstorm断点调试 php.ini 文件中 Xdebug 配置

[XDebug]
xdebug.profiler_output_dir="D:\phpStudy\tmp\xdebug"
xdebug.trace_output_dir="D:\phpStudy\tmp\xdebug" 
zend_extension="D:\phpStudy\php\php-7.0.12-nts\ext\php_xdebug.dll"  # 要打开xdebug调试

## 下面是需要配置的
xdebug.remote_enable=1
xdebug.remote_handler=dbgp
xdebug.remote_mode=req
xdebug.remote_port=9000
xdebug.idekey="PHPSTORM"

弄好后重启集成环境,打好断点,点击phpstorm右上方绿瓢虫图片就会进入调试!

上一篇:GWAS 分析Fst画图


下一篇:Python:hasattr() getattr() setattr() 函数