How to find the foreach index?

foreach($array as $key=>$value) {
    // do stuff
}

$key is the index of each $array element

Leave a Comment