php數組如何分段

爱喝马黛茶的安东尼
發布: 2023-02-25 12:16:02
原創
3458 人瀏覽過

php數組如何分段

array_slice和array_splice函數是用在取出陣列的切片,array_splice還有用新的切片取代原刪除切片位置的功能。類似javascript中的Array.prototype.splice和Array.prototype.slice方法。

array_slice

array array_slice ( array $array , int $offset [, int $length = NULL [, bool $preserve_keys = false ]] )
登入後複製

傳回數組中指定下標offset和長度length的子數組切片。

參數說明

設第一個參數陣列的長度為num_in。

offset

如果offset是正數且小於length,則傳回陣列會從offset開始;如果offset大於length,則不操作,直接傳回。如果offset是負數,則offset = num_in offset,如果num_in offset == 0,則將offset設為0。

length

如果length小於0,那麼會將length轉為num_in - offset length;否則,如果offset length > array_count,則length = num_in - offset 。如果處理後length還是小於0,則直接回傳。

preserve_keys

預設是false,預設不保留數字鍵值原始順序,設為true的話會保留數組原來的數字鍵值順序。

相關推薦:《php陣列

使用實例

<?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 "d"
$output = array_slice($input, 0, 3);  // returns "a", "b", and "c"
 
print_r(array_slice($input, 2, -1)); // array(0 => &#39;c&#39;, 1 => &#39;d&#39;);
print_r(array_slice($input, 2, -1, true)); // array(2 => &#39;c&#39;, 1 => &#39;d&#39;);
登入後複製

執行步驟

·處理參數:offset、length

·移動指標到offset指向的位置

·從offset開始,拷貝length個元素到返回數組

運行流程圖如下:

php數組如何分段

array_splice

#
array array_splice(array &$input,int $offset[, int $length = 0 [, mixed $replacement = array() ]])
登入後複製

刪除input中從offset開始length個元素,如果有replacement參數的話用replacement陣列替換刪除掉的元素。

參數說明

array_splice函數中的offset和length參數跟array_slice函數中的用法一樣。

replacement

如果這個參數設定了,那麼函數就會使用replacement陣列來取代。

如果offset和length指定了沒有任何元素需要移除,那麼replacement會被插入到offset的位置。

如果replacement只有一個元素,可以不用array()去包著它。

使用範例

<?php
$input = array("red", "green", "blue", "yellow");
array_splice($input, 2);
// $input变为 array("red", "green")
 
$input = array("red", "green", "blue", "yellow");
array_splice($input, 1, -1);
// $input变为 array("red", "yellow")
 
$input = array("red", "green", "blue", "yellow");
array_splice($input, 1, count($input), "orange");
// $input变为 array("red", "orange")
 
$input = array("red", "green", "blue", "yellow");
array_splice($input, -1, 1, array("black", "maroon"));
// $input为 array("red", "green",
//     "blue", "black", "maroon")
 
$input = array("red", "green", "blue", "yellow");
array_splice($input, 3, 0, "purple");
// $input为 array("red", "green",
//     "blue", "purple", "yellow");
登入後複製

原始碼解讀

在array_splice中,有這麼一段程式碼:

/* Don&#39;t create the array of removed elements if it&#39;s not going
  * to be used; e.g. only removing and/or replacing elements */
 if (return_value_used) { // 如果有用到函数返回值则创建返回数组,否则不创建返回数组
   int size = length;
 
   /* Clamp the offset.. */
   if (offset > num_in) {
     offset = num_in;
   } else if (offset < 0 && (offset = (num_in + offset)) < 0) {
     offset = 0;
   }
 
   /* ..and the length */
   if (length < 0) {
     size = num_in - offset + length;
   } else if (((unsigned long) offset + (unsigned long) length) > (unsigned) num_in)     {
     size = num_in - offset;
   }
 
   /* Initialize return value */
   array_init_size(return_value, size > 0 ? size : 0);
   rem_hash = &Z_ARRVAL_P(return_value);
 }
登入後複製

array_splice函數傳回的是被刪除的切片。這段程式碼的意思是,如果array_splice需要回傳值,那麼才創建回傳數組,否則不創建,以免浪費空間。這也是一個編程小技巧,僅在需要的時候才返回。例如在函數中使用$result = array_splice(...),那麼return_value_used就是true。

總結

到此本文結束,在平時程式設計中,應當像這兩個函數實作時的做法一樣,將最特殊的情況先處理掉,然後再繼續,以免做了多餘的判斷;有需要儲存新變數的時候才申請新的空間,不然會造成浪費。

以上是php數組如何分段的詳細內容。更多資訊請關注PHP中文網其他相關文章!

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