(No version information available, might only be in Git)
CollectionModify::skip — Skip elements
$position
) : mysql_xdevapi\CollectionModifySkip 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.
この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。
position
Number of elements to skip.
A CollectionModify object to use for further processing.
例1 mysql_xdevapi\CollectionModify::skip() example
<?php
$coll->modify('age > :age')->sort('age desc')->unset(['age'])->bind(['age' => 20])->limit(4)->skip(1)->execute();
?>