phpstudy & phpstorm 安装 xdebug

nicelife 2019-07-01

1. 查看phpstudy 位数,和是否 NTS,TS

phpstudy & phpstorm 安装 xdebug

2. 去下载对应的xdebug .dll 文件

phpstudy & phpstorm 安装 xdebug

3. 打开php.ini 配置,路径改成自己!!

phpstudy & phpstorm 安装 xdebug
[XDebug]
xdebug.remote_enable=1 # 开启远程调试
xdebug.idekey='PHPSTORM' # sessionkey
xdebug.remote_port=9001 # 远程调试通信端口
xdebug.profiler_output_dir="C:phpStudyPHPTutorialtmpxdebug"
xdebug.trace_output_dir="C:phpStudyPHPTutorialtmpxdebug"
zend_extension="C:phpStudyPHPTutorialphpphp-7.1.13-ntsextphp_xdebug-2.7.0-7.1-vc14-nts.dll"

4. phpstorm 配置 xdebug,打开设置搜索xdebug 更改端口改成9001避免fast-cgi 端口冲突

phpstudy & phpstorm 安装 xdebug

5. chrome 下 xdebug helper 扩展,然后选择他再开启他变成绿色

phpstudy & phpstorm 安装 xdebug

phpstudy & phpstorm 安装 xdebug

6. 最后去开启phpstorm里面的监听(小电话)

phpstudy & phpstorm 安装 xdebug

end 访问网址即可调出调试选择!!

相关推荐