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

WBOY
發布: 2016-07-29 08:38:42
原創
1138 人瀏覽過

複製程式碼 程式碼如下:


/*
用手冊上的範例*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教程有興趣的朋友有所幫助。

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板