CollectionRemove::limit

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

CollectionRemove::limitLimit number of documents to remove

說明

public mysql_xdevapi\CollectionRemove::limit(int $rows): mysql_xdevapi\CollectionRemove

Sets the maximum number of documents to remove.

警告

本函數(shù)還未編寫文檔,僅有參數(shù)列表。

參數(shù)

rows

The maximum number of documents to remove.

返回值

Returns a CollectionRemove object that can be used to execute the command, or to add additional operations.

范例

示例 #1 mysql_xdevapi\CollectionRemove::limit() example

<?php

$res 
$coll->remove('job in (\'Barista\', \'Programmatore\', \'Ballerino\', \'Programmatrice\')')->limit(5)->sort(['age desc''name asc'])->execute();

?>