phpstorm安装xdebug调试工具详细笔记

*直接安装xdebug一直都不成功,不知道我什么原因导致的。我解决的方案是直接安装最新版的phpstorm。然后就正常。(个人觉得很有可能xdebug要对应phpstorm)

安装xdebug

1、去官网下载与PHP安装版本匹配的xdebug扩展(https://xdebug.org/download.php) ,安装xdebug一直都不成功,不知道我什么原因导致的。我解决的方案是直接自定义安装;点击custom installation instructions,然后把phpinfo.php的代码复制进去,就会得到推荐下载文件
phpstorm安装xdebug调试工具详细笔记_第1张图片
phpstorm安装xdebug调试工具详细笔记_第2张图片2、将xdebug扩展包解压后放到PHP安装目录下的ext扩展目录下
3、打开PHP的配置的文件php.ini,在文件最后加入xdebug的配置信息。

[XDebug]
xdebug.profiler_output_dir="D:\phpStudy\PHPTutorial\tmp\xdebug"
xdebug.trace_output_dir="D:\phpStudy\PHPTutorial\tmp\xdebug"
zend_extension="php_xdebug-2.6.1-7.2-vc15-nts.dll"
xdebug.remote_enable = on
xdebug.profiler_enable = on
xdebug.profiler_enable_trigger = on
xdebug.profiler_output_name = cachegrind.out.%t.%p
xdebug.show_local_vars=0

你可能感兴趣的:(php)