1、下载Xdebug,地址http://xdebug.org/download.php
下载和PHP版本对应的Xdebug版本,带ts的为线程安全,nts为不安全的
2.把下载的Xdebug动态连接库放到,PHP的ext文件中,如D:\PHP\PHP54\ext
3.配置php.ini文件,在此文件的最后加上如下内容,
[Xdebug]
zend_extension ="D:/PHP/PHP54/ext/php_xdebug-2.2.1-5.4-vc9.dll" (路径根据自己情况设置)
注意:有些文章把此处的zend_extension写成zend_extension_ts这是老版本的配置方式,从PHP5.3对应的Xdebug开始采用前者。

xdebug.auto_trace = On

xdebug.show_exception_trace = On

xdebug.remote_autostart = On

xdebug.remote_enable = On

xdebug.remote_host = 127.0.0.1

xdebug.remote_port = 9000

xdebug.remote_handler = dbgp

xdebug.profiler_enable = on

xdebug.profiler_output_dir="D:/PHP/PHP54/log" (路径根据自己情况设置)

4.从其apache
5.写一个测试文件test.php
<?php
phpinfo();
?>
网页中看到此信息,说明已经配置成功
PHP Xdebug配置问题 _PHP Xdebug配置问题