PHP如何在数组指定位置插入元素【转】
2021-04-25 07:28
标签:定位 spl print 插入 fun splice array ida tps 来源:https://zhidao.baidu.com/question/1930394207460712987.html PHP如何在数组指定位置插入元素【转】 标签:定位 spl print 插入 fun splice array ida tps 原文地址:https://www.cnblogs.com/KillBugMe/p/13260057.html$arr=array(‘a‘,‘b‘,‘c‘,‘d‘,‘e‘,‘f‘,‘g‘);//目标数组bai
$i_arr=array(‘1‘,‘2‘);//要插入bai的数组
$n=2;//插入的位置
array_splice($arr,$n,0,$i_arr);
print_r($arr);
Array (
[0] => a
[1] => b
[2] => 1
[3] => 2
[4] => c
[5] => d
[6] => e
[7] => f
[8] => g
)
更多:https://www.php.net/manual/zh/function.array-splice.php
上一篇:Java 死锁以及如何避免?
下一篇:java中的多态总结
文章标题:PHP如何在数组指定位置插入元素【转】
文章链接:http://soscw.com/index.php/essay/79310.html