CrudOperationSkippable::skip
PHP function
Edit on GitHub ✎
Number of operations to skip
Description
mysql_xdevapi\CrudOperationSkippable::skip(int $skip): mysql_xdevapi\CrudOperationSkippable
Skip this number of records in the returned operation.
Func
Parameters
skipNumber of elements to skip.
Return Values
A CrudOperationSkippable object.
Examples
mysql_xdevapi\CrudOperationSkippable::skip() example
php
<?php
$res = $coll->find('job like \'Programmatore\'')->limit(1)->skip(3)->sort('age asc')->execute();
?>