略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: MongoDuplicateKeyException

2024-04-29

The MongoDuplicateKeyException class

(PECL mongo >= 1.5.0)

简介

Thrown when attempting to insert a document into a collection which already contains the same values for the unique keys.

类摘要

MongoDuplicateKeyException extends MongoWriteConcernException {
/* 继承的属性 */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* 继承的方法 */
}

范例

Example #1 Catching MongoDuplicateKeyException

<?php
$mc 
= new MongoClient("localhost");

$c $mc->selectCollection("test""test");

$c->insert(array('_id' => 1));
try {
    
$c->insert(array('_id' => 1));
} catch (
MongoWriteConcernException $e) {
    echo 
$e->getMessage(), "\n";
}
?>

以上例程的输出类似于:

localhost:27017: insertDocument :: caused by :: 11000 E11000 duplicate key error index: test.test.$_id_  dup key: { : 1 }
add a note add a note

User Contributed Notes 2 notes

up
0
sarahjay dot wth at gmail dot com
9 months ago
Multiplication:

<!DOCTYPE html>
<html>
<body>

<?php
$x
= 10
$y = 6;

echo
$x * $y;
?> 

</body>
</html>

See More details on: http://bizmaa.com
up
0
fastest963 at gmail dot com
5 years ago
Not sure about earlier versions but this definitely exists in pecl mongo 1.2.10.

官方地址:https://www.php.net/manual/en/class.mongoduplicatekeyexception.php

冷却塔厂家 广告
中文GPT4.0无需注册 广告
北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3