📅  最后修改于: 2020-09-29 05:45:34             🧑  作者: Mango
要从数组中删除第一个元素或值,请使用array_shift()函数。此函数还返回数组的移除元素,如果数组为空,则返回NULL。删除第一个元素后,其他元素的键将被修改,并且仅当键为数字时,数组才从头开始编号。
它是PHP的内置数组函数,可将元素从数组的开头移出。
用于从数组中删除第一个元素的array_shift()函数返回已删除的元素。如果数组为空,它也会返回NULL。
Removed element from array is: ";
print_r($remove);
echo " Updated arraylist: ";
print_r($color);
?>
输出量
从给定数组的第一个位置删除元素“Blue”,并在给定输出中显示更新的列表。
Arraylist: Array ( [0] => Blue [1] => Red [2] => Black [3] => Green [4] => Gray [5] => White )
Removed element from array is: Blue
Updated arraylist: Array ( [0] => Red [1] => Black [2] => Green [3] => Gray [4] => White )
示例:使用数字键
"Carom", 2 => "Chess", 3 => "Ludo");
echo "Removed element: ".array_shift($game). "";
print_r($game);
?>
输出量
Removed element: Carom
Array ( [0] => Chess [1] => Ludo )
示例:使用数值
Update array is: ";
print_r($numbers);
?>
输出量
从给定数组的第一个位置删除元素25,并在下面显示更新的列表。
Removed array element is: 25
Update array is: Array (
[0] => 12
[1] => 65
2] => 37
[3] => 95
[4] => 38
[5] => 12
)