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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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