« Previous entry | Next entry » Browse > Snippets

Skip to comments (7) PHP foreach pitfall
Posted by Erik on Jan 27 2006 @ 15:32  :: 3842 unique visits

Today I encountered this stupid foreach pitfall. I was doing some stuff with an array, adding elements, changing the internal order of the array. And somehow all the time the last element of the array seemed bugged. It's value always equaled that of the element before it. Took me some time to figure this one out:
CODE: PHP
$foo = array(12, 42, 1337);

foreach ($foo as &$bar) {
  ; // do nothing to change the array
}

foreach ($foo as $bar) {
  ; // do nothing to change the array
}

print_r($foo); // this will print array(12, 42, 42)
 

The second foreach loop uses the same $bar variable. But the first loop declared it as a reference. So instead of using $bar in second loop I was using the last element of $foo because $bar was still referencing to it.
I hope that by posting this here I save some people from falling into the same pitfall.

7 comments posted so far
Add your own »

1. On Jan 29 2006 @ 09:36 dustin wrote:

I thought everyone knew this! ;]

I don't use foreach, usually.

2. On Jan 29 2006 @ 11:03 Buzzard wrote:

I've encountered that before, was a PITA to figure out why :-)

I think PHP should scope variables better too (like C), $bar should only be defined inside each foreach loop (unless you were using it outside of the loop)

3. On Dec 13 2007 @ 04:04 MRChokesondix wrote:

bullock, pure bullock.

why i got half a mind to come right up there and whoop your sorry candy ass BOY.

ARE YOU A NAGGER'R SOMTINN?!

4. On May 13 2009 @ 15:58 guest wrote:

Need Furniture? And need to buy furniture from China at competitive price? LongYear Furniture is your source for quality bedroom furniture featuring a huge selection of home furniture a happy home for beautiful life, kids furniture for a good memory of childhood, and to gain an extra good price from wholesale furniture and direct from  furniture manufacturers China, styles of China furniture are available, living room furniture is also nice for your house, find dining room furniture and more!

6. On Jul 14 2009 @ 04:24 guest wrote:

buy wow gold
my wow power leveling
buy wow gold
good wow power leveling
BUY wow gold
my wow power leveling
CHEAP rs gold
cheap wow power leveling
CHEAPEST lotro gold
MY aion gold
buy wow gold
cheap wow gold
CHEAPEST wow gold

Add a new comment

Name:
Password: (leave empty for anonymous comment)
 
View formatting tags Comment: