Dutch PHP Conference 2025 - Call For Papers

CrudOperationLimitable::limit

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

CrudOperationLimitable::limitSet result limit

Опис

abstract public mysql_xdevapi\CrudOperationLimitable::limit(int $rows): mysql_xdevapi\CrudOperationLimitable

Sets the maximum number of records or documents to return.

Увага

Наразі ця функція не документована. Доступний лише список її параметрів.

Параметри

rows

The maximum number of records or documents.

Значення, що повертаються

A CrudOperationLimitable object.

Приклади

Приклад #1 mysql_xdevapi\CrudOperationLimitable::limit() example

<?php

$res
= $coll->find()->fields(['name as n','age as a','job as j'])->groupBy('j')->limit(11)->execute();
$res = $table->update()->set('age',69)->where('age > 15 and age < 22')->limit(4)->orderby(['age asc','name desc'])->execute();

?>
add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top