vote up 3 vote down star

What is the difference between these two usages of foreach?

foreach ($nodes as $node) {
 //do stuff
}

foreach ($odp in $ftw) {
  //do more stuff
}
flag

70% accept rate

2 Answers

vote up 11 vote down check

First one is legal PHP, second one is not.

link|flag
vote up 6 vote down

Using in in PHP doesn't work. In Javascript however, a similar form is acceptable and they differ thusly:

var obj = {
    'a' : 'Apple',
    'b' : 'Banana',
    'c' : 'Carrot'
};

for (var i in obj) {
    alert(i); // "a", "b", "c"
}

for each (var i in obj) {
    alert(i); // "Apple", "Banana", "Carrot"
}

basically, for each ... in ... (Javascript) or foreach ... as ... (PHP) will give the value of the properties of the object, whereas for ... in ... (javascript) will give you the name of each property.

link|flag
There is no foreach...as in javaScript. Only the first for loop will parse in JavaScript – Marius Aug 14 at 1:35
edited – nickf Aug 14 at 1:49

Your Answer

Get an OpenID
or

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