怎么把php数组最后一个元素放到最前?

PHPz
Release: 2020-09-05 14:13:39
Original
3734 people have browsed it

方法:首先使用“array_pop”函数删除指定数组中的最后一个元素;然后通过“array_unshift()”方法将指定数组中最后一个元素插入到最前位置即可;语法“array_unshift(数组,array_pop(数组))”。

怎么把php数组最后一个元素放到最前?

怎么把php数组最后一个元素放到最前?

代码实现如下:

$a = array('a', 'b', 'c');
array_unshift($a, array_pop($a));
var_dump($a);die;
Copy after login

array_unshift() 函数用于向数组插入新元素。新数组的值将被插入到数组的开头。

array_pop() 函数删除数组中的最后一个元素,然后返回数组的最后一个值

更多相关知识,请访问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