php array_slice函数的使用以及参数详解
2018-10-15 18:01
阅读:522
复制代码 代码如下:
<?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函数的使用以及参数详解
文章链接:http://soscw.com/index.php/essay/18952.html
文章标题:php array_slice函数的使用以及参数详解
文章链接:http://soscw.com/index.php/essay/18952.html
评论
亲,登录后才可以留言!