PHP添加Xdebug扩展的方法

xdegug是一个很好的php调试扩展,安装方法也很简单,基本和其他的扩展安装方式差不多.

一、下载对应的DLL

下载地址:https://xdebug.org/download.php 里面选择对应的php版本以及windows 32/64位 版本

二、把文件放在PHP安装目录下的ext文件夹中 也可以自定义。

三、修改php.ini

代码如下:

  1. [Xdebug]
  2. zend_extension="./ext/php_xdebug-2.2.3-5.3-vc9-nts.dll"
  3. ;以下是参数
  4. xdebug.auto_trace=on
  5. xdebug.collect_params=on
  6. xdebug.collect_return=on
  7. xdebug.trace_output_dir="./xdebug"
  8. xdebug.profiler_enable=on
  9. xdebug.profiler_output_dir="./xdebug"

配置实例

  1. [Xdebug]
  2. ;zend_extension_ts = "X:\upupw\PHP5\ext\php_xdebug.dll"
  3. xdebug.collect_params = 1
  4. xdebug.collect_return = 1
  5. xdebug.auto_trace = 0
  6. xdebug.trace_output_dir = "X:\upupw\xdebug\trace"
  7. xdebug.profiler_enable = 0
  8. xdebug.profiler_output_dir = "X:\upupw\xdebug\profiler"
  9. xdebug.max_nesting_level = 100
  10. xdebug.remote_enable = 1
  11. xdebug.remote_host = localhost
  12. xdebug.remote_port = 9000
  13. xdebug.remote_handler = dbgp

注意:

xdebug.trace_output_dir="./xdebug" 配置是把调试文件放在PHP安装目录下的xdebug文件夹中,所以要在PHP安装目录下新建xdebug文件夹

xdebug.profiler_output_dir="./xdebug" 配置是把调试文件放在所运行项目下的xdebug文件夹中,所以要在项目目录下新建xdebug文件夹

重启网站服务器,可以echo phpinfo()查看是否有xdebug扩展,有便是安装成功了。

测试

新建php文件,代码如下:

  1. <?php
  2. testXdebug();
  3. function testXdebug() {
  4. require_once('abc.php');
  5. }
  6. ?>

运行查看php安装目录下的xdebug文件夹中是否生成文件,生成文件则安装成功。