Home > Backend Development > PHP Tutorial > PHP 数组截取 array_slice() 函数

PHP 数组截取 array_slice() 函数

WBOY
Release: 2016-06-23 13:58:53
Original
1780 people have browsed it

定义和用法
array_slice() 函数在数组中根据条件取出一段值,并返回。
注释:如果数组有字符串键,所返回的数组将保留键名。(参见例子 4)
语法
array_slice(array,offset,length,preserve)
参数
array
必需。规定输入的数组。
offset
必需。数值。规定取出元素的开始位置。如果是正数,则从前往后开始取,如果是负值,从后向前取 offset 绝对值。
length
可选。数值。规定被返回数组的长度。如果 length 为正,则返回该数量的元素。如果 length 为负,则序列将终止在距离数组末端这么远的地方。如果省略,则序列将从 offset 开始直到 array 的末端。
preserve
可选。可能的值:
true - 保留键
false - 默认 - 重置键


例子 1
$a=array(0=>"Dog",1=>"Cat",2=>"Horse",3=>"Bird");
print_r(array_slice($a,1,2));
?>
输出:Array ( [0] => Cat [1] => Horse )


例子 2
带有负的 offset 参数:
$a=array(0=>"Dog",1=>"Cat",2=>"Horse",3=>"Bird");
print_r(array_slice($a,-2,1));
?>
输出:Array ( [0] => Horse )


例子 3
preserve 参数设置为 true:
$a=array(0=>"Dog",1=>"Cat",2=>"Horse",3=>"Bird");
print_r(array_slice($a,1,2,true));
?>
输出:Array ( [1] => Cat [2] => Horse )


例子 4
带有字符串键:
$a=array("a"=>"Dog","b"=>"Cat","c"=>"Horse","d"=>"Bird");
print_r(array_slice($a,1,2));
?>
输出:Array ( [b] => Cat [c] => Horse )

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