How to use array next method to move the position of the internal pointer of the array in PHP

1 Answer

0 votes
$arr = [3, 8, 0, 5, 2, 8];

echo current($arr). "\n";

echo next($arr). "\n";

echo next($arr). "\n";




/*
run:

3
8
0

*/

 



answered Jul 30, 2022 by avibootz

Related questions

...