PHP 中的 array_shift() 函数

phpprogrammingserver side programming

PHP 中的 array_shift() 函数从数组中删除第一个元素,并返回被删除元素的值。

语法

array_shift(arr)

参数

  • arr − 指定的数组

返回

array_shift() 函数返回移位后的值。如果数组为空,则返回 NULL

示例

以下是示例 −

<?php
$products = array("Electronics", "Accessories", "Shoes", "Toys", "Groceries");
$res = array_shift($products);
print_r($products);
?>

输出。

第一个值 “Electronics” 被分配给 “$res” −

Array (
   [0] => Accessories
   [1] => Shoe
   [2] => Toys
   [3] => Groceries
)

相关文章