Home  >  Article  >  Backend Development  >  php array_unshift函数怎么用?

php array_unshift函数怎么用?

PHPz
PHPzOriginal
2016-06-13 12:05:361684browse

php array_unshift函数怎么用?

array_unshift()是PHP中的一个内置函数,用于在数组中添加一个或多个元素,并将这些元素添加到数组的开头。

被加上的元素作为一个整体添加,这些元素在数组中的顺序和在参数中的顺序一样。它们从第0位开始进行数字索引。如果有字符串键,则它们保持不变。

语法

array_unshift(array,value1,value2,value3...)

参数:

该函数可以采用多个参数,具体取决于我们要插入数组的元素数量。

1.png

返回值:该函数在插入元素后返回新修改后的数组中的元素总数。

示例:

<?php
$a=array("a"=>"red","b"=>"green");
array_unshift($a,"blue");
print_r($a);
?>

输出:

Array ( [0] => blue [a] => red [b] => green )

示例:

<?php
$a=array(0=>"red",1=>"green");
array_unshift($a,"blue");
print_r($a);
?>

输出:

Array ( [0] => blue [1] => red [2] => green )

更多相关知识,请访问 PHP中文网!!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn