PHP foreach loop key value

You can access your array keys like so:

foreach ($array as $key => $value)

Leave a Comment