CollectionModify::unset

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

CollectionModify::unsetドキュメントのフィールドの値を削除する

説明

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

コレクションのドキュメントから、属性を削除します。

パラメータ

fields

コレクションのドキュメントから削除する属性

戻り値

その後の処理で使える CollectionModify オブジェクトを返します。

例1 mysql_xdevapi\CollectionModify::unset() の例

<?php

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

?>
add a note

User Contributed Notes

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