vote up -2 vote down star

How can you convert foreach -statements to for -loops in PHP?

Examples to be used in your answers

1

 foreach( $end_array[1]['tags'] as $tag )

and

2

 foreach($end_array as $question_id => $row2)
flag

4  
I think you've already asked this question, and accepted an answer: stackoverflow.com/questions/1241819/… – Greg Hewgill Aug 16 at 7:26
Thank you for your answer! – Masi Aug 16 at 8:08
Your question title and question don't match – Draemon Aug 16 at 8:24

2 Answers

vote up 3 vote down check

In both examples the expressions left to 'as' refer to an array. An array stores a mapping of keys to values. Both examples iterate through elements of this mapping.

In the first example you are only interested in the values (and not in the keys they are mapped to). At every iteration $tag refers to the "current" value.

In the second example $question_id refers to the key, $row2 refers to the value of the "current" mapping.

In general the expression

foreach($array as $key => $value) {
  ...
}

could be rewritten as

$keys = array_keys($array);
for($k=0; $k < count($keys); $k++) {
  $key = $keys[$k];
  $value = $array[$key];
  ...
}
link|flag
vote up 0 vote down

The converted for code has syntax problems, try the following (which also works faster for huge arrays):

$keys = array_keys($array);
for ($k = 0, $key_size = count($keys); $k < $key_size; $k++) {
  $key = $keys[$k];
  $value = $array[$key];
  ...
}
link|flag

Your Answer

Get an OpenID
or

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