(没有可用的版本信息,可能仅在 Git 中)
CollectionRemove::limit —限制要删除的文档数量
描述
public mysql_xdevapi\CollectionRemove::limit(int $rows): mysql_xdevapi\CollectionRemove
设置要删除的最大文档数。警告
该功能目前还没有文档记录;仅其参数列表可用。
参数
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();
?>