|
nextAdvance the internal pointer of an array Description
mixed next(arrayobject
&$array )next behaves like current, with one difference. It advances the internal array pointer one place forward before returning the element value. That means it returns the next array value and advances the internal array pointer by one. Parameters
Return Values
Returns the array value in the next place that's pointed to by the
internal array pointer, or Warning
This function may
return Boolean Changelog
Examples
Example #1 Example use of next and friends
Notes
See Also
|