一、下载对应的DLL
二、把文件放在PHP安装目录下的ext文件夹中
三、修改php.ini
复制代码 代码如下:
[Xdebug]
zend_extension="./ext/php_xdebug-2.2.3-5.3-vc9-nts.dll"
;以下是参数
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_dir="./xdebug"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="./xdebug"
复制代码 代码如下:
testXdebug();
function testXdebug() {
require_once('abc.php');
}
?>