Hi All,
was wondering what was the best way to debug PHP on my local machine. I use MAMP on mac os 10.5
thanks, Patrick
|
1
|
|
|
|
|
|
Using xdebug is a good start. Download the package and follow the instructions in the
Don't forget to restart Apache after this. Most debugging can be done using a simple If you need more control, you can add an
Again, don't forget to restart Apache. Now, using a tool like MacGDBp (or Eclipse+PDT if you must), you get a classic debugger. You can step though your program. Have fun! |
||
|
|
|
|
I also use eclipse+pdt and xdebug. If you're new to trying out debuggers you can try zend studio which will setup things pretty easily. |
||
|
|
|
|
Personally, I use Eclipse+PDT and XDebug. To simplify things, get Eclipse for PHP Developers from the Eclipse download page rather than installing PDT as a plugin. Eclipse has a high learning curve, but it gives you all the debugger functionality you expect: instruction stepping, breakpoints, watches, even altering variables live. If you don't like Eclipse or find it's too much for you, there are other clients compatible with XDebug. |
||
|
|
|
|
I've found that running You can do some nifty things in your code itself (like using debug_backtrace()), but that (obviously) requires you to put it in the code yourself. |
||
|
|
|
|
I've always thought the "best" way of PHP debugging on any platform is by using FirePHP, which can output debug messages straight into the Firebug window in Firefox. |
||
|
|