vote up 1 vote down star

I know how to do this... I'll give example code below. But I can't shake the feeling that there's a clever way to accomplish what I want to do without using a variable like $isfirstloop.

$isfirstloop = true;
foreach($arrayname as $value) {
 if ($isfirstloop) {
  dosomethingspecial();
  $isfirstloop = false;
 }
 dosomething();
}

Is there any way to execute dosomethingspecial() only on the first loop, while executing dosomething() on every loop, without introducing a variable like $isfirstloop?

Thanks!

flag

54% accept rate

6 Answers

vote up 4 vote down check
foreach ($arr as $i => $val)
{
  if ($i == 0) { doSomethingSpecial(); } // Only happens once.
  doSomething(); // Happens every time.
}
link|flag
+1 Exactly how i'd apprach it, of course if it's an associative array this wouldnt work, as you'd get the key instead of the index. – Neil Aitken Aug 29 at 20:10
1  
You'd have to assume the array is numbered with the first key being zero. Consider an array with unset 0 element. – Michael Krelin - hacker Aug 29 at 20:12
Exactly what I was looking for. It seems so simple, yet I've never come up with it. Thanks so much! – stalepretzel Aug 29 at 20:57
vote up 0 vote down

Your not gaining any performance from the alternative methods. Your method is just fine.

link|flag
vote up 0 vote down
$elem = reset($arrayname);
dosomethingspecial();
while( ($elem = next($arrayname)) !== FALSE ) {
  dosomething();
}
link|flag
vote up 1 vote down

Hmm... You can reset the array and then see if you're on the first key:

reset($a); foreach($a as $k => $v) {
    if(key($a)==$k) doIt();
}
link|flag
vote up 7 vote down

Forgive me if I'm missing something, but why not just do the thing you want before the loop?

dosomethingspecial();
foreach($arrayname as $value) {
 dosomething();
}
link|flag
1  
And if you need the first element for doSomethingSpecial() you can use e.g. reset($arrayname) (if the array may be reset before the loop) – VolkerK Aug 29 at 20:17
2  
dosomethingspecial() will always be invoked, no matter whether the $arrayname array is populated with elements or not, I would assume he at least wants this to be invoked if its populated at least with one element. – meder Aug 29 at 20:19
Yes, if you take VolkerK's comment into account. – Michael Krelin - hacker Aug 29 at 20:21
vote up 0 vote down
$count = count( $arr );

for ( $i = 0; $i < $count; $i++ ) {
    if ( $i == 0 ) { dosomethingspecial(); }
    doSomething();
}
link|flag
Great for associated arrays or arrays with non-contiguous numbering. – Michael Krelin - hacker Aug 29 at 20:20

Your Answer

Get an OpenID
or

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