up vote 18 down vote favorite
3
share [g+] share [fb]

Is it possible to find the foreach index?

in a "for" loop as follows:

for($i = 0; $i < 10; ++$i){
   echo $i.' ';
}

$i will give you the index.

Do I have to use the for loop or is there some way to get the index in the foreach loop?

link|improve this question
3  
For me, search in SO is faster than read a manual – Jeaffrey Gilbert Jun 1 '11 at 7:01
feedback

9 Answers

up vote 47 down vote accepted
foreach($array as $key=>$value) {
    // do stuff
}

$key is the index of each $array element

link|improve this answer
Depends on what the OP means by index: <? $a = array(3,5,'xx',4312,'sasas'); unset($a[3]); foreach ($a as $k=>$v) print "\$k= $k and \$v = $v"; ?> – Milen A. Radev Sep 27 '08 at 0:21
1  
definitely, this question isn't very specific, i took it to mean the OP was largely unaware of the $key=>$value syntax – Owen Sep 27 '08 at 0:23
feedback

You can put a hack in your foreach, such as a field incremented on each run-through, which is exactly what the for loop gives you in a numerically-indexed array. Such a field would be a pseudo-index that needs manual management (increments, etc).

A foreach will give you your index in the form of your $key value, so such a hack shouldn't be necessary.

e.g., in a foreach

$index = 0;
foreach($data as $key=>$val)
{
    // Use $key as an index, or...

    // ... manage the index this way..
    echo "Index is $index\n";
    $index++;
}
link|improve this answer
feedback

Please read my answer here (note, C# but the concept is the same in PHP):

http://stackoverflow.com/questions/43021/c-get-index-of-current-foreach-iteration#43029

Cliffnotes:

Foreach works with an iterator, so the index is never known.

link|improve this answer
feedback

Owen has a good answer. If you want just the key, and you are working with an array this might also be useful.

foreach(array_keys($array) as $key) {
//  do stuff
}
link|improve this answer
feedback

It should be noted that you can call key() on any array to find the current key its on. As you can guess current() will return the current value and next() will move the array's pointer to the next element.

link|improve this answer
This should be useful if you want to use a plain old PHP associative array to store data which is to be exposed via the Iterable interface (where you need to keep track of where you are in a loop). – Peter Dec 15 '11 at 21:33
feedback

You can create $i outside the loop and do $i++ at the bottom of the loop.

link|improve this answer
It's important to note that this approach gives the current iteration of the loop, NOT the current index of the iterated array. – Peter Bailey Sep 26 '08 at 19:20
feedback

Jonathan is correct. PHP arrays act as a map table mapping keys to values. in some cases you can get an index if your array is defined, such as

$var = array(2,5);

for ($i = 0; $i < count($var); $i++) {
    echo $var[$i]."\n";
}

your output will be

2
5

in which case each element in the array has a knowable index, but if you then do something like the following

$var = array_push($var,10);

for ($i = 0; $i < count($var); $i++) {
    echo $var[$i]."\n";
}

you get no output. This happens because arrays in PHP are not linear structures like they are in most languages. They are more like hash tables that may or may not have keys for all stored values. Hence foreach doesn't use indexes to crawl over them because they only have an index if the array is defined. If you need to have an index, make sure your arrays are fully defined before crawling over them, and use a for loop.

link|improve this answer
good information – Owen Sep 26 '08 at 19:32
feedback

PHP arrays have internal pointers, so try this:

foreach($array as $key => $value){
   $index = current($array);
}

Works okay for me (only very preliminarily tested though).

link|improve this answer
Sorry! I was looking in the wrong place... current() doesn't work at all. – Brian Leahy Oct 28 '08 at 20:49
feedback

These two loops are equivalent (bar the safety railings of course):

for ($i=0; $i<count($things); $i++) { ... }

foreach ($things as $i=>$thing) { ... }

eg

for ($i=0; $i<count($things); $i++)
{
    echo "Thing ".$i." is ".$things[$i];
}

foreach ($things as $i=>$thing)
{
    echo "Thing ".$i." is ".$thing;
}
link|improve this answer
Not if it is an associative array – JoeCortopassi Aug 3 '11 at 15:48
feedback

Your Answer

 
or
required, but never shown

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