Search code examples
phploopsassociative-array

How can I loop through an associative array and get the key?


My associative array:

$arr = array(
   1 => "Value1",
   2 => "Value2",
   10 => "Value10"
);

Using the following code, $v is filled with $arr's values

 foreach ($arr as $v){
    echo $v;    // Value1, Value2, Value10
 }

How do I get $arr's keys instead?

 foreach (.....){
    echo $k;    // 1, 2, 10
 }

Solution

  • You can do:

    foreach ($arr as $key => $value) {
     echo $key;
    }
    

    As described in PHP docs.