Quantcast
Channel: PHP array next value of a value - Stack Overflow
Viewing all articles
Browse latest Browse all 4

Answer by L. Herrera for PHP array next value of a value

$
0
0

If that's the case, you should first prepare your array. Based on your given array, it seems the index is not consecutively correct. Try using array_values() function.

$items = array('1'   => 'two','9'   => 'four','7' => 'three','6'=>'seven','11'=>'nine','2'=>'five');$new_items = array_values($items);$new_items = array(    [0] => 'two',    [1] => 'four',    [2] => 'three',    [3] => 'seven',    [4] => 'nine',    [5] =>'five');

Then you can do the foreach..

foreach($new_items as $key => $value) {   // Do the code here using the $key}

Viewing all articles
Browse latest Browse all 4

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>