| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
MongoDB\Driver\WriteResult::getUpsertedIds(mongodb >=1.0.0) MongoDB\Driver\WriteResult::getUpsertedIds — Returns an array of identifiers for upserted documents 説明
final public array MongoDB\Driver\WriteResult::getUpsertedIds
( void
)
パラメータこの関数にはパラメータはありません。 返り値Returns an array of identifiers (i.e. "_id" field values) for upserted documents. The array keys will correspond to the index of the write operation (from MongoDB\Driver\BulkWrite) responsible for the upsert. エラー / 例外
例例1 MongoDB\Driver\WriteResult::getUpsertedIds() example
<?php 上の例の出力は、 たとえば以下のようになります。 array(2) { [2]=> object(MongoDB\BSON\ObjectId)#4 (1) { ["oid"]=> string(24) "580e62a224f2302f191b880b" } [3]=> object(MongoDB\BSON\ObjectId)#5 (1) { ["oid"]=> string(24) "580e62a224f2302f191b880c" } } 参考
|
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「MongoDB\Driver\WriteResult::getUpsertedIds - Returns an array of identifiers for upserted documents」をGoogle検索
|