略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: CrudOperationLimitable::limit

2024-05-03

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 noteadd a note

User Contributed Notes

There are no user contributed notes for this page.

官方地址:https://www.php.net/manual/en/mysql-xdevapi-crudoperationlimitable.limit.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3