Answers for "foreach index php"

PHP
3

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
8

foreach loop array php

foreach (array as $value){ 
  //code to be executed; 
  print("value : $value");
} 

foreach (array as  $key => $value){ 
  //code to be executed; 
  print("key[$key] => $value");
}
Posted by: Guest on April-12-2020
1

foreach range php

<?php
  
foreach (range(0, 12) as $number) {
    echo $number;
}

?>
Posted by: Guest on June-30-2020
13

foreach php

foreach (array_expression as $value)
    statement
foreach (array_expression as $key => $value)
    statement
Posted by: Guest on May-26-2020
0

php get index in foreach

$array = array('a', 'b', 'c');
foreach ($array as $letter=>$index) {

  echo $letter; //Here $letter content is the actual index
  echo $array[$letter]; // echoes the array value

}//foreach
Posted by: Guest on September-18-2021
0

php foreach index

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

Browse Popular Code Answers by Language