http://www.zend.com/en/community/pdt
http://www-128.ibm.com/developerworks/ibm/…&ca=dkw-php
***
เพิ่มเติมครับสำหรับ pdt เวอร์ชั่นใหม่ ต้องมีไฟล์ dummy.php ในเว็บ root directory ด้วยครับ
อย่างเช่น c:\appserv\www\dummy.php
<?php
//dummy.php
@ini_set(’zend_monitor.enable’, 0);
if(@function_exists(’output_cache_disable’)) {
@output_cache_disable();
}
if(isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if(function_exists(’debugger_connect’)) {
debugger_connect();
exit();
} else {
echo “No connector is installed.”;
}
}
?>
//dummy.php
@ini_set(’zend_monitor.enable’, 0);
if(@function_exists(’output_cache_disable’)) {
@output_cache_disable();
}
if(isset($_GET['debugger_connect']) && $_GET['debugger_connect'] == 1) {
if(function_exists(’debugger_connect’)) {
debugger_connect();
exit();
} else {
echo “No connector is installed.”;
}
}
?>
ถ้าพบปัญหากับการใช้ zenddebugger ให้เปลี่ยนมาใช้ xdebug แทนได้ครับ ช้ากว่าเล็กน้อยแต่ใช้ง่ายกว่ามาก 
http://www.xdebug.org/ ครับ
http://www.xdebug.org/ ครับ
[xdebug]
xdebug.remote_autostart=On
xdebug.remote_enable=On
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
zend_extension_ts=”c:\php5\ext\php_xdebug-2.0.3-5.2.5.dll”;เปลี่ยนเป็น path ของ php_xdebug ที่บันทึกไว้
xdebug.remote_autostart=On
xdebug.remote_enable=On
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
zend_extension_ts=”c:\php5\ext\php_xdebug-2.0.3-5.2.5.dll”;เปลี่ยนเป็น path ของ php_xdebug ที่บันทึกไว้
แหล่งข้อมูลจาก http://www.witcomram.com/webboard/index.php?showtopic=6260