phpstudy & phpstorm 安装 xdebug

35次阅读

共计 510 个字符,预计需要花费 2 分钟才能阅读完成。

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

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

3. 打开 php.ini 配置, 路径改成自己!!
[XDebug]xdebug.remote_enable=1 # 开启远程调试 xdebug.idekey=’PHPSTORM’ # sessionkeyxdebug.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 端口冲突

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

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

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

正文完
 0