PHP - Grab the first element using a foreach

后端 未结 8 1010
面向向阳花
面向向阳花 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:56

    foreach($array as $element) {
        if ($element === reset($array))
            echo 'FIRST ELEMENT!';
    
        if ($element === end($array))
            echo 'LAST ELEMENT!';
    }
    

提交回复
热议问题