PHP:Xdebug配置
在配置Xdebug时,之前经历了无数次失败,终于配置成功!
以下是配置失败的原因:
1、下载时,选用Xdebug的版本不正确;
2、配置时,Xdebug文件名或文件的路径不正确;
在参考 http://www.cnblogs.com/qiantuwuliang/archive/2011/01/23/1942382.html文章后,终于配置成功,具体步骤如下:
1、将本机的Php安装信息用Phpinfo()输出;
2、上述输出信息复制出来,粘贴到 Xdebug phpinfo信息分析地址,并点击提交按钮,等待分析结果;
3、以下是我机器的提交后的输出信息:
Summary
- Xdebug installed: no
- Server API: Apache 2.0 Handler
- Windows: yes - Compiler: MS VC11 - Architecture: x86
- Zend Server: no
- PHP Version: 5.6.15
- Zend API nr: 220131226
- PHP API nr: 20131226
- Debug Build: no
- Thread Safe Build: yes
- Configuration File Path: C:\Windows
- Configuration File: C:\xampp\php\php.ini
- Extensions directory: C:\xampp\php\ext
Instructions
- Download php_xdebug-2.4.0rc3-5.6-vc11.dll
- Move the downloaded file to C:\xampp\php\ext
- Edit
C:\xampp\php\php.ini
and add the linezend_extension = C:\xampp\php\ext\php_xdebug-2.4.0rc3-5.6-vc11.dll
- Restart the webserver
按照上述InStructions的步骤设置,Xdebug安装成功!