目录
在 PHP 中,可以使用 reset()
函数或者 array_shift()
函数来取出数组中的第一个元素。
reset()
?函数:$array = [1, 2, 3, 4, 5];
$firstElement = reset($array);
echo $firstElement; // 输出 1
reset()
?函数将数组内部指针重置为第一个元素,并返回该元素的值。array_shift()
?函数:$array = [1, 2, 3, 4, 5];
$firstElement = array_shift($array);
echo $firstElement; // 输出 1
array_shift()
?函数将数组中的第一个元素移除并返回其值。注意,这会改变原始数组的结构。
两种方法的区别在于:reset()
只是将数组指针重置,而不会改变原始数组;array_shift()
则会移除数组中的第一个元素,改变原始数组的结构。