English 中文(简体)
以 _id 插入 mongo php
原标题:mongo php insert with _id
  • 时间:2012-05-23 23:44:30
  •  标签:
  • php
  • mongodb

将新文档插入到我的 MOngo 收藏中时, 我无法指定自己的 < codeid 值 。 以下是我的 PHP :

$user = array(
 _id => new MongoId("4f626fdf1771a8e71a000000"),
 name =>  John Smith 
)
try {
    if($col->insert($user)){
        echo  INSERTED ;
    }
} catch(MongoCursorException $e) {
    echo "ERROR: ".$e;
}

此选项不显示错误, 但它也不会将项目插入到收藏中。 但我可以指定一个字符串变量, 而不是 MongoId 类型到 < code_ id 字段, 并插入 。

最佳回答

默认情况下, MOngoDB 驱动程序会以所谓的不安全模式运行命令, 当它会对请求进行火灾和忘记而不检查错误时。 所以, 如果有重复的密钥错误, 您不知道 。

尝试在安全模式下运行插入 :

$col->insert($user, array("safe" => true));

哦,你最肯定的“强者”可以做你自己的客体(与这里的其他答案相反)。

问题回答

安全性已经从未来的使用中消失。 要保证您使用正确的命令, 请使用 w w 的写作 。

$col- & gt; 插入( $user, 数组 (w {gt; true) )

See here: http://php.net/manual/en/mongocollection.insert.php





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签