Answer the question
In order to leave comments, you need to log in
How to step through a loop in Xdebug?
Hello. I'm learning Xdebug. I set it up in PHPStorm, everything works fine, the only thing I can’t figure out is how, when stepping through debugging, fall into the loop and monitor data changes inside it.
For example:
$testVar = 404;
while ($testVar < 410)
$testVar++;
Answer the question
In order to leave comments, you need to log in
$testVar = 404;
while ($testVar < 410) {
$testVar++;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question