软件版本
php-5.3.4-Win32-VC6
Apache2.2
php_xdebug-2.1.0-5.3-vc6.dll
1.Xdebug配置
php-5.3.4-Win32-VC6/php.ini文件末尾增加如下 Xdebug配置信息,每行信息末尾不能有空格,否则出错
[Xdebug]
extension="D:/Program Files/XDebug/php_xdebug-2.1.0-5.3-vc6.dll"
xdebug.auto_trace=on
xdebug.collect_params=on
xdebug.collect_return=on
xdebug.trace_output_dir="D:/temp"
xdebug.profiler_enable=on
xdebug.profiler_output_dir="D:/temp"
2.apache配置Apache2.2/conf/httpd.conf文件末尾增加如下内容,加载php模块LoadModule php5_module "D:/Program Files/php-5.3.4-Win32-VC6/php5apache2_2.dll"PHPIniDir "D:/Program Files/php-5.3.4-Win32-VC6"AddType application/x-httpd-php .phpAddType application/x-httpd-php .htmlAddType application/x-httpd-php .htm