Is it possible to debug PHP scripts so that it keeps running until an expression is true?

For example, I want to know when $a becomes a certain value. I don't want to keep pressing step into and wait until the variable $a changes the value to it.

link|improve this question

feedback

migrated from superuser.com Jan 3 '10 at 19:06

This question came from our site for computer enthusiasts and power users.

1 Answer

up vote 0 down vote accepted

The solution is to set a breakpoint, right click on it and set a condition for it.

However, there are no global breakpoints, you must specify a location for every breakpoint you put. So, if you want to know where a value changes, you can't set any global conditions as they would be too CPU consuming.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.