首页 > 代码库 > xampps 配置xdebug

xampps 配置xdebug

有时候用PHP开发程序,要对代码进行跟踪调试,方法有很多,下面记录下PHP+Xdebug的调试配置日志。

环境是:

xampps 1.8.7 

php 5.5.11


Xdebug 下载到对应的PHP版本,下载地址:http://xdebug.org/download.php


目前我下载的是:xdebug 2.24  PHP 5.5 VC11 TS (64 bit) 下载后,重命名为:php_xdebug.dll


找开php.ini的目录,在最后加上以下配置

[xdebug]

  zend_extension="php_xdebug.dll"

  xdebug.remote_enable = On

  xdebug.remote_host = "localhost"

  xdebug.remote_port = 9000

  xdebug.remote_handler = "dbgp"

  xdebug.auto_trace = 1

  xdebug.collect_includes = 1

  xdebug.collect_params = 1

  xdebug.collect_return = 1

  xdebug.default_enable = 1

  xdebug.collect_assignments = 1

  xdebug.collect_vars = 1

  xdebug.remote_autostart = 1

  xdebug.remote_connect_back = 1

  xdebug.show_local_vars = 1

  xdebug.show_exception_trace = 0

  运行phpinfo();


看有xdebug模块信息出来就是搞定了。


本文出自 “开心编程_永无止境” 博客,请务必保留此出处http://happyliu.blog.51cto.com/501986/1589601

xampps 配置xdebug