|
MongoDB\Driver\WriteResult::isAcknowledgedReturns whether the write was acknowledged 説明
final public bool MongoDB\Driver\WriteResult::isAcknowledged()
If the write is acknowledged, other count fields will be available on the MongoDB\Driver\WriteResult object. パラメータこの関数にはパラメータはありません。 戻り値
Returns エラー / 例外
例例1 MongoDB\Driver\WriteResult::isAcknowledged with acknowledged write concern
上の例の出力は以下となります。 bool(true) 例2 MongoDB\Driver\WriteResult::isAcknowledged with unacknowledged write concern
上の例の出力は以下となります。 bool(false) 参考
|