Answers for "get iteration number in a foreach loop php"

PHP
24

foreach loop in php

$arr = ['Item 1', 'Item 2', 'Item 3'];

foreach ($arr as $item) {
  var_dump($item);
}
Posted by: Guest on June-01-2020

Code answers related to "get iteration number in a foreach loop php"

Browse Popular Code Answers by Language