首頁  >  文章  >  後端開發  >  array_slice php array_slice函數的使用以及參數詳解

array_slice php array_slice函數的使用以及參數詳解

WBOY
WBOY原創
2016-07-29 08:38:421133瀏覽

複製程式碼 程式碼如下:


/*
用手冊上的範例*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這麼遠的距離

以上就介紹了array_slice php array_slice函數的使用以及參數詳解,包括了array_slice方面的內容,希望對PHP教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn