`

sPHP 之 XDebug

阅读更多
1. 下载
http://www.xdebug.org/download.php

放到PHP安装目录的ext下面

XDebug和PHP版本,系统是 32位还是64位有关

2. 编辑php.ini

末尾加上 :
;xdebug configuration;http://blog.csdn.net/eric6/article/details/5932029
[Xdebug]
;zend_extension_ts="D:/Program Files/PHP/ext/php_xdebug.dll"
zend_extension="D:/Program Files/PHP/ext/php_xdebug.dll"

xdebug.remote_enable = 1
; 以下xdebug 调试选项实际上是默认值
xdebug.remote_host = localhost
xdebug.remote_port = 9000
xdebug.remote_mode = req
xdebug.remote_handler = dbgp
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics