Debugging PHP for the first time in 10 years, and loving it!
I have been writing PHP code for 10 years now and have used a variety of ways to debug my code – except the actual runtime debugging! I have used echo statements and log files to debug and solve problems. I knew there is XDebug and Zend Debugger, but never tried them.
Today, I downloaded, setup and used Zend Debugger for the first time. And I loved it! It was awesome to see variable watch, breakpoints and the like. Just loved it!
Why did I use the debugger? I’ve been using Flex Builder myself for last one year heavily and think the debugger is indispensable. I have done some .NET code earlier and love debugger there too. For PHP, it was more like “I don’t need a debugger!” so far.
I dropped that today and embraced a debugger. And I am loving it so far!
Do you use a PHP Debugger?
Related posts:
- Coding Clean and Semantic Templates If you are the guy who uses<div> tag for everything,...
- AIR 2, Microsoft future UI and iCheckbox Adobe AIR 2.0 Beta out – list of new features...
- Showing Flex Preloader near the top of your Application Flex comes with a reasonably good preloader (DownloadProgressBar) that shows...

I cannot imagine to code without having a debugger to be honest. PHP wise I use XDebug at the moment with PDT. Although I also wanted to test out the Zend debugger, too.
benny!
22 Apr 09 at 2:38 am