php – 如何测试数组指针是否在foreach循环中的第一个元素

前端之家收集整理的这篇文章主要介绍了php – 如何测试数组指针是否在foreach循环中的第一个元素前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在一个for循环它是简单的
for ( $idx = 0 ; $idx < count ( $array ) ; $idx ++ )
{
    if ( $idx == 0 )
    {
        // This is the first element of the array.
    }
}

这是如何在foreach循环中完成的?

有没有像is_first()或某事的功能

我正在寻找像:

foreach ( $array as $key => $value )
{
    if ( /* is the first element */ )
    {
        // do logic on first element
    }
    else
    {
        // all other logic
    }
}

我在想我可以像$is_first = true一样设置一个bool然后一旦循环迭代一次,将bool设置为false.

PHP有很多pre-built函数和id,而是使用…或另一种方式…

整个布尔方式似乎几乎像…欢呼:s

干杯,

亚历克斯

你可以使用“current()”
$myArray = array('a','b','c');
if (current($myArray) == $myArray[0]) {
    // We are at the first element
}

文件http://php.net/manual/en/function.current.php

检索第一个元素的方法

$myArray[0]

$slice = array_slice($myArray,1); 
$elm = array_pop($slice);
原文链接:https://www.f2er.com/php/131768.html

猜你在找的PHP相关文章