(无版本信息可用,可能只存在于 Git 中)
CollectionRemove::limit — 限制要删除的文档数量
设置要删除的文档的最大数量。
此函数目前没有文档;只有其参数列表可用。
rows
要删除的文档的最大数量。
返回一个 CollectionRemove 对象,可用于执行命令或添加其他操作。
示例 #1 mysql_xdevapi\CollectionRemove::limit() 示例
<?php
$res = $coll->remove('job in (\'Barista\', \'Programmatore\', \'Ballerino\', \'Programmatrice\')')->limit(5)->sort(['age desc', 'name asc'])->execute();
?>