array_slice
(PHP4)
array_slice ---&">nbsp; 抽出数组的一部份
语法 : array array_slice(array array, int offset, int [length] );
说明 :
此函数从数组array传回元素的一部份,若offset为正数,则取回的部份将起始于数组中的offset处;若offset为负数,则从数组的末端开始。若length有给予且是正数,将会取回length个元素,若length是负数,则会停止于数组末端处第length个元素,若省略此参数,则传回的部份将会从offset直到数组的末端。
Example :
<?php
$input = array("a", "b", "c", "d", "e");
$output = array_slice($input, 2); // returns "c", "d", and "e"
$output = array_slice($input, 2, -1); // returns "c", "d"
$output = array_slice($input, -2, 1); // returns "d"
$output = array_slice($input, 0, 3); // returns "a", "b", and "c"
?>
参考 : array_splice( )
时间: 2024-09-05 02:50:45