| ユーザフォーラムで議論/質問 | マニュアル検索 | ハイライト | ハイライトオフ | ポータル | php spot |
MongoDB\Driver\Exception\WriteException::getWriteResult(mongodb >= 1.0.0) MongoDB\Driver\Exception\WriteException::getWriteResult — Returns the WriteResult for the failed write operation 説明
final public MongoDB\Driver\WriteResult MongoDB\Driver\Exception\WriteException::getWriteResult
( void
)
Returns the MongoDB\Driver\WriteResult for the failed write operation. The MongoDB\Driver\WriteResult::getWriteErrors() and MongoDB\Driver\WriteResult::getWriteConcernError() methods may be used to get more details about the failure. パラメータこの関数にはパラメータはありません。 返り値The MongoDB\Driver\WriteResult for the failed write operation. 例例1 MongoDB\Driver\Exception\WriteException::getWriteResult() example
<?php 上の例の出力は、 たとえば以下のようになります。 array(1) { [0]=> object(MongoDB\Driver\WriteError)#5 (4) { ["message"]=> string(70) "E11000 duplicate key error index: db.collection.$_id_ dup key: { : 1 }" ["code"]=> int(11000) ["index"]=> int(1) ["info"]=> NULL } } 参考
|
![]() |
各種マニュアル:
PHPマニュアル |
PEARマニュアル |
Smarty(英語)マニュアル |
PHP-GTKマニュアル |
「MongoDB\Driver\Exception\WriteException::getWriteResult - Returns the WriteResult for the failed write operation」をGoogle検索
|