欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  php教程

php array_slice函数的使用以及参数详解

程序员文章站 2022-03-21 15:08:00
...
<?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" 
?>

重点说下length 为负.它表示取数组一直到距离数组末端length这么远的距离

更多php array_slice函数的使用以及参数详解相关文章请关注PHP中文网!

相关文章:

php数组函数序列之array_slice()

php array_slice 取出数组中的一段序列实例

php中array_slice和array_splice函数解析

相关标签: php array slice