1 选择你的版本?php phpinfo(); ?比如我的: 关键是这三项:PHP Version 7.3.0Architecture x86 (x86是32位系统,X64指的是64位系统)Zend Extension Build API320180731,TS,VC15 ...
1 选择你的版本
<?php phpinfo(); ?>
比如我的:
关键是这三项:
PHP Version 7.3.0
Architecture x86 (x86是32位系统,X64指的是64位系统)
Zend Extension Build API320180731,TS,VC15
然后去官网下载对应的文件
https://xdebug.org/download.php
2 将下载的文件放入你的php\ext目录
比如我的目录是 F:\xmapp\php\ext
3 编辑php.ini
插入以下代码
[Xdebug] ;指定Xdebug扩展文件的绝对路径 zend_extension=F:\xmapp\php\ext\php_xdebug-2.7.0-7.3-vc15.dll ;启用性能检测分析 xdebug.profiler_enable=On ;启用代码自动跟踪 xdebug.auto_trace=on ;允许收集传递给函数的参数变量 xdebug.collect_params=On ;允许收集函数调用的返回值 xdebug.collect_return=On ;指定堆栈跟踪文件的存放目录 xdebug.trace_output_dir="C:\Users\Administrator\Desktop\xdebug" ;指定性能分析文件的存放目录 xdebug.profiler_output_dir="C:\Users\Administrator\Desktop\xdebug" xdebug.profiler_output_name = "cachegrind.out.%p" xdebug.remote_enable = On xdebug.remote_port=9000 xdebug.remote_handler = dbgp xdebug.remote_host = localhost xdebug.var_display_max_depth = 10
4 重启apache
5 再次查看phpinfo()
出现xdebug 说明已安装完成
沃梦达教程
本文标题为:Windows 安装php调试工具 Xdebug
基础教程推荐
猜你喜欢
- PHP获取MySQL执行sql语句的查询时间方法 2022-11-09
- 使用PHP开发留言板功能 2023-03-13
- 在Laravel中实现使用AJAX动态刷新部分页面 2023-03-02
- PHP实现Redis单据锁以及防止并发重复写入 2022-10-12
- laravel 解决多库下的DB::transaction()事务失效问题 2023-03-08
- php array分组,PHP中array数组的分组排序 2022-08-01
- PHP命名空间简单用法示例 2022-12-01
- PHP中的错误及其处理机制 2023-06-04
- laravel ORM关联关系中的 with和whereHas用法 2023-03-02
- thinkphp3.2.3框架动态切换多数据库的方法分析 2023-03-19