CollectionModify::unset
(No version information available, might only be in Git)
CollectionModify::unset — Unset the value of document fields
Beschreibung
Removes attributes from documents in a collection.
Diese Funktion ist bis jetzt nicht dokumentiert. Es steht nur die Liste der Argumente zur Verfügung.
Parameter-Liste
-
fields
-
The attributes to remove from documents in a collection.
Rückgabewerte
CollectionModify object that can be used for further processing.
Beispiele
Beispiel #1 mysql_xdevapi\CollectionModify::unset() example
<?php
$res = $coll->modify('job like :job_name')->unset(["age", "name"])->bind(['job_name' => 'Plumber'])->execute();
?>