Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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
 }
share|improve this question
3  
By the way, you're missing commas in the array. – ℝaphink Dec 23 '09 at 10:02

9 Answers

up vote 19 down vote accepted

You can do:

foreach (array_expression as $key => $value) {
 echo $key;
}
share|improve this answer
As described in the manual, second syntax. – JohnK Mar 14 at 19:42

If you use array_keys(), PHP will give you an array filled with just the keys:

$keys = array_keys($arr);
foreach($keys as $key) {
    echo($key);
}

Alternatively, you can do this:

foreach($arr as $key => $value) {
    echo($key);
}
share|improve this answer
Assuming you use the result from array_keys() in the 2nd example your foreach will only echo the indexes and not the values of array_keys() – Htbaa Dec 23 '09 at 9:55
Good catch. That's a copy and paste error. Fixed. :) – Trevor Johns Dec 23 '09 at 10:00
In the first solution, my IDE (Netbeans) doesn't give a warning that the $value variable is unused, so here's + 1 – Zaky German Dec 26 '12 at 12:41
which one is faster? – dudelgrincen Apr 12 at 20:31
foreach($array as $k => $v)

Where $k is the key and $v is the value

Or if you just need the keys use array_keys()

share|improve this answer

Have a look at this other post:

http://stackoverflow.com/questions/1219548/java-and-python-equivalent-of-phps-foreacharray-as-key-value

share|improve this answer
Hum, what's up with the -1? The answer was in that post and it actually explains how to do it in other programming languages. – rui Dec 23 '09 at 9:57

PHP array keys Documentation is here

share|improve this answer

The following will allow you to get at both the key and value at the same time.

foreach ($arr as $key => $value)
{
  echo($key);
}
share|improve this answer
 foreach($arr as $key=>$value){
    echo($key);    // key
 }
share|improve this answer

Oh I found it in the PHP manual.

foreach ($array as $key => $value){
    statement
}

The current element's key will be assigned to the variable $key on each loop.

share|improve this answer

Use $key => $val to get the keys:

<?php

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

foreach ($arr as $key => $val) {
   print "$key\n";
}

?>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.