php array_unshift函数怎么用?

PHPz
Release: 2020-06-20 12:39:14
Original
1684 people have browsed it

php array_unshift函数怎么用?

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

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

语法

array_unshift(array,value1,value2,value3...)
Copy after login

参数:

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

1.png

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

示例:

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

输出:

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

示例:

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

输出:

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

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

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template