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.

For example, currently I am doing this:

foreach($myArray as $key => $unused) {
    //use $key here
}

Is there a way to do this without having to specify the $unused value?

share|improve this question

closed as too localized by tereško, H2CO3, Madara Uchiha, DCoder, PeeHaa 埽 Aug 18 '12 at 13:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

<?php
foreach(array_keys($myArray) as $key) {}

API

share|improve this answer
4  
+1 however it is more efficient to use regular foreach($myArray as $key => $value) than with array_keys that it is applied to function stack. So unless using it for code readability or later in code you need keys only - dont use array_keys() – Ivan Hušnjak Aug 18 '12 at 7:07

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