CollectionRemove::execute

(无版本信息可用,可能仅在 Git 中)

CollectionRemove::execute执行删除操作

说明

public mysql_xdevapi\CollectionRemove::execute(): mysql_xdevapi\Result

需要调用 execute 函数才能触发客户端向服务器发送 CRUD 操作请求。

警告

此函数目前没有文档;只有它的参数列表可用。

参数

此函数没有参数。

返回值

结果对象。

示例

示例 #1 mysql_xdevapi\CollectionRemove::execute() 示例

<?php

$res
= $coll->remove('true')->sort('age desc')->limit(2)->execute();

?>
添加笔记

用户贡献笔记

此页面没有用户贡献笔记。
To Top