Skip/jump/step to specific variable in foreach loop

During debugging, I'm stepping through an array that has hundreds of sub arrays..

How can PHPSTORM jump to a specific variable in the foreach loop while debugging? E.G.

$fields = array( of 600 arrays );

foreach ($fields as $field) {

// on first iteration, $field = array #1

// on second iteration, $field = array #2

// how to skip to $field = array #596??

}

0

Please sign in to leave a comment.