PHP程序员站--PHP编程开发平台
 当前位置:主页 >> PHP高级编程 >> 开发技巧 >> 

php数组的合并、拆分、区别取值函数集

php数组的合并、拆分、区别取值函数集

来源:互联网  作者:  发布时间:2010-02-09
PHP数组的合并、拆分、区别取值函数集 都说PHP的数组功能很强大

2.array_splice()

携带三个参数,同上,作用是删除从offset开始长度为length的子数组。

例子:

<?php
$input = array("red", "green", "blue", "yellow");
array_splice($input, 2);
// $input is now array("red", "green")

$input = array("red", "green", "blue", "yellow");
array_splice($input, 1, -1);
// $input is now array("red", "yellow")

$input = array("red", "green", "blue", "yellow");
array_splice($input, 1, count($input), "orange");
// $input is now array("red", "orange")

$input = array("red", "green", "blue", "yellow");
array_splice($input, -1, 1, array("black", "maroon"));
// $input is now array("red", "green",
// "blue", "black", "maroon")

$input = array("red", "green", "blue", "yellow");
array_splice($input, 3, 0, "purple");
// $input is now array("red", "green",
// "blue", "purple", "yellow");
?>


延伸阅读:
删除数组元素实用的PHP数组函数
php数组技巧二则
php遍历数组的三种方法(foreach、while、for)性能比较
PHP数组实例总结
JavaScript数组系列函数应用


php函数直接返回数组的方法是最慢的
php数组应用技巧
php几个常用的去空、分组、调试数组函数
smarty里判断数组是否为空
PHP的常用数组整理
PHP 中利用数组降低程序的时间复杂度
php下将XML转换为数组的函数
PHP array_push 数组函数使用方法
Tags: array   函数   数组   php   php数组  
最新文章
推荐阅读
月点击排行榜
PHP程序员站 Copyright © 2007-2010,PHPERZ.COM All Rights Reserved 粤ICP备07503606号