Answers for "get index in php foreach loop"

PHP
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

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

Browse Popular Code Answers by Language