We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
array_slice - Extract a slice of the array
array array_slice ( array $array, int32 offset [, int32 length] )
array_slice() returns the sequence of elements from array as specified by offset and length.
array - The input array.
offset - The offset
length - The number of elements to return. If it is omitted, then the sequence will have everything from offset up until the end of the array.
The slice specified.
1.0 and above.