Skip to content

1.8.0

Compare
Choose a tag to compare
@oscarotero oscarotero released this 11 Feb 09:31
· 334 commits to master since this release

Improvements in RowCollection::get() method. Now accepts also integers that returns an array_slice:

$rows->get(0, true); //Returns the first argument
$rows->get(10); //Returns an array with all arguments starting from index 10 to the end
$rows->get(2, 4); //Returns an array of 4 arguments starting from index 2