Answers for "how to get the index in foreach loop php"

PHP
5

foreach loop in php

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

foreach ($arr as $item) {
  var_dump($item);
}

$dict = array("key1"=>"35", "key2"=>"37", "key3"=>"43");

foreach($dict as $key => $val) {
  echo "$key = $val<br>";
}
?>
Posted by: Guest on June-28-2020
2

php foreach get current index

$index = 0;
foreach($data as $key=>$val) {
    // Use $key as an index, or...

    // ... manage the index this way..
    echo "Index is $index\n";
    $index++;
}
Posted by: Guest on June-18-2020
0

php foreach index

Blog::whereYear('created_at', 2017)->get();
Posted by: Guest on November-11-2020

Code answers related to "how to get the index in foreach loop php"

Browse Popular Code Answers by Language