Hi all,
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?
|
|
|
|
|
|
|
$key is the index of each $array element |
||||
|
|
|
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. |
||
|
|
|
|
Owen has a good answer. If you want just the key, and you are working with an array this might also be useful.
|
||
|
|
|
|
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
your output will be
in which case each element in the array has a knowable index, but if you then do something like the following
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. |
||
|
|
|
You can create $i outside the loop and do $i++ at the bottom of the loop. |
||
|
|
|
You can put a hack in your A e.g., in a
|
|||
|
|
|
|
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). |
||
|