是否可以使用Netbeans 7.0和XDebug调试控制器代码

Using any MVC Framework in PHP (say Zend Framework or CodeIgniter), is it possible to debug Controller Code meaningfully like I can debug a plain PHP script with Netbeans and XDebug.

I means whenever I start debugging it start to Step Over the Code in index.php File. Is it possible to Step-Over code during Debugging inside Controller File and simulataneously observe XDEBUG rendered Output on the Web Browser.

Because , being able to Step-Over only index.php is meaningless at all.

pushing F7 should help you out.

As long as you have set everything up right you should be able to "Step Into" each and every call that is done. Netbeans will open the controller file that is needed and step through it by pressing F7.