CollectionModify::patch

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

CollectionModify::patchPatcht ein Dokument

Beschreibung

public mysql_xdevapi\CollectionModify::patch(string $document): mysql_xdevapi\CollectionModify

Übernimmt ein Patch-Objekt und wendet es auf ein oder mehrere Dokumente an und kann mehrere Dokumenteigenschaften aktualisieren.

Parameter-Liste

document

Ein Dokument mit den Eigenschaften, die auf die übereinstimmenden Dokumente anzuwenden sind.

Rückgabewerte

Gibt ein CollectionModify-Objekt zurück.

Beispiele

Beispiel #1 mysql_xdevapi\CollectionModify::patch()-Beispiel

<?php

$res
= $coll->modify('"Programmatore" IN job')->patch('{"Hobby" : "Programmare"}')->execute();

?>
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top