Home  >  Article  >  Backend Development  >  怎么把php数组最后一个元素放到最前?

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

PHPz
PHPzOriginal
2016-06-06 20:26:223731browse

方法:首先使用“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;

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

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

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