CollectionModify::unset

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

CollectionModify::unsetUnset the value of document fields

説明

public mysql_xdevapi\CollectionModify::unset ( array $fields ) : mysql_xdevapi\CollectionModify

Removes attributes from documents in a collection.

警告

この関数は、 現在のところ詳細な情報はありません。引数のリストのみが 記述されています。

パラメータ

fields

The attributes to remove from documents in a collection.

返り値

CollectionModify object that can be used for further processing.

例1 mysql_xdevapi\CollectionModify::unset() example

<?php

$res 
$coll->modify('job like :job_name')->unset(["age""name"])->bind(['job_name' => 'Plumber'])->execute();

?>