NetBeans IDE (PHP) で、PHP のデバッグを行うためには、XAMPP 側に設定を追加する必要がある。
C:\xampp\php\php.ini に次の設定を追加する。(最後で良い。)
zend_extension = "C:\xampp\php\ext\php_xdebug.dll"
xdebug.remote_enable=1
xdebug.remote_host=127.0.0.1
xdebug.remote_port=9000
xdebug.remote_handler=dbgp
こで、NetBeans からあっさりと PHP のデバッグが可能。