2009-02-26 57 views

回答

29

快速的cheatsheet如果你不熟悉的行話來說,這裏是替代方面的快速轉換,這可能是更容易記住:

* array_unshift() - (aka Prepend ;; InsertBefore ;; InsertAtBegin)  
* array_shift() - (aka UnPrepend ;; RemoveBefore ;; RemoveFromBegin) 

* array_push()  - (aka Append ;; InsertAfter ;; InsertAtEnd)  
* array_pop()  - (aka UnAppend ;; RemoveAfter ;; RemoveFromEnd) 
+0

偉大的一個確實:) – 2013-11-09 09:33:18

0

對我來說array_slice()工作正常, 說:

$arr = array(1,2,3,4,5,6); 
//array_slice($array,offset); where $array is the array to be sliced, and offset is the number of array elements to be sliced 
$arr2 = array_slice($arr,3);//or 
$arr2 = array_slice($arr,-3);//or 
$arr2 = array_slice($arr,-3,3);//return 4,5 and 6 in a new array 
$arr2 = array_slice($arr,0,4);//returns 1,2,3 and 4 in a new array 
+0

爲什麼不是j ust array_shift()它更有效嗎? – 2016-11-28 21:41:21

相關問題