CrudOperationSkippable::skip

(No version information available, might only be in Git)

CrudOperationSkippable::skipNumber of operations to skip

説明

abstract public mysql_xdevapi\CrudOperationSkippable::skip ( integer $skip ) : mysql_xdevapi\CrudOperationSkippable

Skip this number of records in the returned operation.

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

skip

Number of elements to skip.

返り値

A CrudOperationSkippable object.

例1 mysql_xdevapi\CrudOperationSkippable::skip() example

<?php

$res 
$coll->find('job like \'Programmatore\'')->limit(1)->skip(3)->sort('age asc')->execute();

?>