(没有版本信息可用,可能只在 Git 中)
CrudOperationSkippable::skip — 要跳过的操作数
$skip
): mysql_xdevapi\CrudOperationSkippable跳过返回操作中的此数量的记录。
此函数当前没有文档;只有它的参数列表可用。
跳过
要跳过的元素数量。
一个 CrudOperationSkippable 对象。
示例 #1 mysql_xdevapi\CrudOperationSkippable::skip() 示例
<?php
$res = $coll->find('job like \'Programmatore\'')->limit(1)->skip(3)->sort('age asc')->execute();
?>