Question

I am new to debugging and I'm very interested in knowing how to setup expressions in debugging environment. For example, if I want to see when a variable $a changes it value to non-empty, how would I find it out?

Was it helpful?

Solution

Depending on what you are looking for here.

If you wish to be able to output specific variables to a visual medium while running an application in PHP you can use an application like: http://www.firephp.org/ this will allow you to put debugging lines in your php and have them output to your browser.

However you are most likely (going by your question) looking for something that would allow you to set breakpoints and so forth while coding you are pretty much limited to zend studio (eclipse) http://shop.zend.com/en/zend-studio-for-eclipse.html

Bonus: for javascript debugging i suggest firebug

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top