PDF (US Ltr)
- 2.4Mb
PDF (A4)
- 2.4Mb
HTML Download (TGZ)
- 251.4Kb
HTML Download (Zip)
- 258.8Kb
Copyright 1997-2021 the PHP Documentation Group.
CollectionModify::skip
Skip elements
Description
public mysql_xdevapi\CollectionModify mysql_xdevapi\CollectionModify::skip(int position);
Skip the first N elements that would otherwise be returned by a find operation. If the number of elements skipped is larger than the size of the result set, then the find operation returns an empty set.
Warning
This function is currently not documented; only its argument list is available.
Parameters
-
position
Number of elements to skip.
Return Values
A CollectionModify object to use for further processing.
Examples
Example 5.49 mysql_xdevapi\CollectionModify::skip
example
<?php
$coll->modify('age > :age')->sort('age desc')->unset(['age'])->bind(['age' => 20])->limit(4)->skip(1)->execute();
?>