54t23 发表于 2014-12-15 09:12:50

xampps 配置xdebug

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

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

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

找开php.ini的目录,在最后加上以下配置
  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模块信息出来就是搞定了。
页: [1]
查看完整版本: xampps 配置xdebug