<?php $array = [1,2,3,4,5]; next($array); var_dump(current($array)); // 2 foreach ($array as $item) { continue; // iterate over array } var_dump(current($array)); // 2. В PHP 5.5 будет NULL
You have javascript disabled. You will not be able to edit any code.