(没有可用的版本信息,可能仅在 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();
?>