Get a slice of the WireArray.
Given a starting point and a number of items, returns a new WireArray of those items. If $limit
is omitted, then it includes everything beyond the starting point.
Example
// Get first 3 items
$myItems = $items->slice(0, 3);
Usage
// basic usage
$fieldtypes->slice($start);
// usage with all arguments
$fieldtypes->slice($start, $limit = 0);
Arguments
Name | Type(s) | Description |
---|---|---|
start | int | Starting index. |
limit (optional) | int | Number of items to include. If omitted, includes the rest of the array. |
Return value
WireArray
Returns a new WireArray.
$fieldtypes methods and properties
API reference based on ProcessWire core version 3.0.236