php 向数组 首位插入 和 尾部插入
Posted 笔记本
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 向数组 首位插入 和 尾部插入相关的知识,希望对你有一定的参考价值。
首位插入:
<?php
$queue = array("orange", "banana");
array_unshift($queue, "apple", "raspberry");
print_r($queue);
?>
Array ( [0] => apple [1] => raspberry [2] => orange [3] => banana )
尾部插入:
<?php
$stack = array("orange", "banana");
array_push($stack, "apple", "raspberry");
print_r($stack);
?>
Array
(
[0] => orange
[1] => banana
[2] => apple
[3] => raspberry
)
以上是关于php 向数组 首位插入 和 尾部插入的主要内容,如果未能解决你的问题,请参考以下文章
JavaScript引用类型之Array数组的concat()和push()方法的区别