PHP - Grab the first element using a foreach

后端 未结 8 994
面向向阳花
面向向阳花 2020-12-14 07:11

Wondering what would be a good method to get the first iteration on a foreach loop. I want to do something different on the first iteration.

Is a conditional our b

8条回答
  •  伪装坚强ぢ
    2020-12-14 07:49

    You can simply add a counter to the start, like so:

    $i = 0;
    
    foreach($arr as $a){
     if($i == 0) {
     //do ze business
     }
     //the rest
     $i++;
    }
    

提交回复
热议问题