php调试xdebug

Xdebug + Wamp 2.0 的配置
http://yeyuan.iteye.com/blog/930679


windows平台下php版本问题–VC6/VC9和TS/NTS
http://piggyq.com/pen/windows-vc6-vc9-tsnts.html
引用
php下载页面中提供了4个下载版本,是vc6/vc9 与 TS/NTS的组合

VC6:legacy Visual Studio 6 compiler,就是使用这个编译器编译的。
       VC9:Visual Studio 2008 compiler,就是用微软的VS编辑器编译的。

由于apache.org只提供VC6的版本,所以使用原版apache时只能使用VC6。(www.apachelounge.com上有apache VC9的版本提供,应该可以和PHP VC9配合,没用过)

TS:Thread Safe 线程安全, 执行时会进行线程(Thread)安全检查,以防止有新要求就启动新线程的CGI执行方式而耗尽系统资源

NTS:Non Thread Safe 非线程安全, 在执行时不进行线程(Thread)安全检查




xdebug 与xampp的安装
Tailored Installation Instructions

Summary

Xdebug installed: no
Server API: Apache 2.0 Handler
Windows: yes - Compiler: MS VC6 - Architecture: x86
Zend Server: no
PHP Version: 5.3.5
Zend API nr: 220090626
PHP API nr: 20090626
Debug Build: no
Thread Safe Build: yes
Configuration File Path: C:\Windows
Configuration File: D:\xampp\php\php.ini
Extensions directory: \xampp\php\ext
Instructions

Download php_xdebug-2.1.2-5.3-vc6.dll
Move the downloaded file to \xampp\php\ext
Edit D:\xampp\php\php.ini and add the line
zend_extension = \xampp\php\ext\php_xdebug-2.1.2-5.3-vc6.dll
Restart the webserver
If you like Xdebug, and thinks it saves you time and money, please have a look at the donation page.



使用xdebug调试PHP程序
http://hi.baidu.com/icej/blog/item/2f6dfe5004edca5d1138c2d6.html

你可能感兴趣的:(xdebug)