1 johnson_jarod Apr 02, 2009 17:36
3 slamp Apr 05, 2009 09:33
PHP IDE that included a debugger?
I'm using notepad++ with php xdebug extension
http://amiworks.co.in/talk/debugging-php-using-xdebug-and-notepad-part-i/
http://www.ourwikicommunity.com/wiki/How_to_Setup_BDGp_debugger_in_Notepad%2B%2B_to_Debug_PHP
It's very usefull.
4 john Apr 05, 2009 09:50
I use Text Mate with all of it's included bundles.
It corrects me relentlessly
5 edb Apr 05, 2009 10:08
I just bookmarked the first link slamp provided so I can make my notepad++ be reason enough to re-install wamp :)
6 laibcoms Apr 05, 2009 10:14
If you are not using MSWin, try [1] Bluefish and [2] Quantra+
If you are using MSWin, try [1] jEdit and [2] EmEditor
Usually you'll have to find the appropriate plugins, but if I read correctly, Bluefish and Quantra+ provides it as built-in.
Not sure what exactly you're after, but I debug plugins in a couple of different ways. One really easy one is to echo out the value of something if that is all I need. Like this:
It breaks the page because it gets all mad about output starting before something that is supposed to be first, but so what: it's development and I'm the only one seeing it. You can get really fancy with it if you like and dump an array with this:
Even cooler is to use the message maker thingie that b2evolution provides, like this:
Hope it helps a wee bit!