CollectionModify::unset
PHP function
Edit on GitHub ✎
Unset the value of document fields
Description
mysql_xdevapi\CollectionModify::unset(array $fields): mysql_xdevapi\CollectionModify
Removes attributes from documents in a collection.
Parameters
fieldsThe attributes to remove from documents in a collection.
Return Values
CollectionModify object that can be used for further processing.
Examples
mysql_xdevapi\CollectionModify::unset() example
php
<?php
$res = $coll->modify('job like :job_name')->unset(["age", "name"])->bind(['job_name' => 'Plumber'])->execute();
?>