tags:

views:

74

answers:

4

Is there an IDE for PHP where you can set breakpoints and step into and render a webpage "stepwise"?

And whats the "best" IDE for working with php-code?

+1  A: 

There are several. The kicker is you either have to run everything locally, or install a connector on the server you are developing on. Zend Studio and Komodo are two good ones. Also take a look at the Zend Debugger.

Byron Whitlock
+1  A: 

PHPDesigner integrates breakpoints with XDebug. I've never tried the feature, but I know it has it.

St. John Johnson
+4  A: 

Yes there is ; there are at least two of those :

Those can use the Xdebug extension to provide step by step debugging, breakpoints, ...


And they are probably the two "best" free IDE out there for PHP code -- at least, if you have a powerful computer.

Pascal MARTIN
Really, can you set breakpoints in Netbeans and watch a web page being created step by step? With this addon that is?
Chris_45
A: 

It's a text editor, not an IDE, but Notepad++ with the DBGP plugin works fine as a front-end to the Xdebug extension for step-by-step debugging of PHP code.

I'm not so sure about the "stepwise rendering" on client-side - it might just work if you flush the output to the browser every couple of lines, but I guess it depends a lot on the browser. You might have more luck with the Paint Events extension to Firebug.

djn