How to find the foreach index - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T02:55:53Zhttp://stackoverflow.com/feeds/question/141108http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/141108/how-to-find-the-foreach-index3How to find the foreach indexwavesmachine2008-09-26T18:23:15Z2008-10-28T20:43:54Z
<p>Hi all,</p>
<p>Is it possible to find the foreach index?</p>
<p>in a "for" loop as follows:
for($i = 0; $i < 10; ++$i){
echo $i.' ';
}</p>
<p>$i will give you the index.</p>
<p>Do I have to use the for loop or is there some way to get the index in the foreach loop?</p>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/141114#14111421Answer by Owen for How to find the foreach indexOwen2008-09-26T18:24:33Z2008-09-26T18:24:33Z<pre><code>foreach($array as $key=>$value) {
// do stuff
}
</code></pre>
<p>$key is the index of each $array element</p>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/141117#1411170Answer by Ólafur Waage for How to find the foreach indexÓlafur Waage2008-09-26T18:25:29Z2008-09-26T18:25:29Z<p>You can create $i outside the loop and do $i++ at the bottom of the loop.</p>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/141120#1411200Answer by ConroyP for How to find the foreach indexConroyP2008-09-26T18:25:54Z2008-09-28T13:23:54Z<p>You can put a hack in your <code>foreach</code>, such as a field incremented on each run-through, which is exactly what the <code>for</code> loop gives you in a numerically-indexed array. Such a field would be a pseudo-index that needs manual management (increments, etc).</p>
<p>A <code>foreach</code> will give you your index in the form of your <code>$key</code> value, so such a hack shouldn't be necessary.</p>
<p>e.g., in a <strong><code>foreach</code></strong></p>
<pre><code>$index = 0;
foreach($data as $key=>$val)
{
// Use $key as an index, or...
// ... manage the index this way..
echo "Index is $index\n";
$index++;
}
</code></pre>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/141124#1411242Answer by FlySwat for How to find the foreach indexFlySwat2008-09-26T18:26:14Z2008-09-26T18:26:14Z<p>Please read my answer here (note, C# but the concept is the same in PHP):</p>
<p><a href="http://stackoverflow.com/questions/43021/c-get-index-of-current-foreach-iteration#43029">http://stackoverflow.com/questions/43021/c-get-index-of-current-foreach-iteration#43029</a></p>
<p>Cliffnotes:</p>
<p>Foreach works with an iterator, so the index is never known.</p>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/141220#1412201Answer by The Brawny Man for How to find the foreach indexThe Brawny Man2008-09-26T18:47:18Z2008-09-26T18:47:18Z<p>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 </p>
<pre><code>$var = array(2,5);
for ($i = 0; $i < count($var); $i++) {
echo $var[$i]."\n";
}
</code></pre>
<p>your output will be </p>
<pre><code>2
5
</code></pre>
<p>in which case each element in the array has a knowable index, but if you then do something like the following</p>
<pre><code>$var = array_push($var,10);
for ($i = 0; $i < count($var); $i++) {
echo $var[$i]."\n";
}
</code></pre>
<p>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.</p>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/142131#1421312Answer by Zoredache for How to find the foreach indexZoredache2008-09-26T21:35:43Z2008-09-26T21:35:43Z<p>Owen has a good answer. If you want just the key, and you are working with an array this might also be useful.</p>
<pre><code>foreach(array_keys($array) as $key) {
// do stuff
}
</code></pre>
http://stackoverflow.com/questions/141108/how-to-find-the-foreach-index/244801#2448010Answer by Bowser for How to find the foreach indexBowser2008-10-28T20:43:54Z2008-10-28T20:43:54Z<p>PHP arrays have internal pointers, so try this:</p>
<p>foreach($array as $key => $value){</p>
<p>$index = current($array);
}</p>
<p>Works okay for me (only very preliminarily tested though).</p>