欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

MongoDB插入数据后返回信息代码释义

程序员文章站 2024-01-10 12:43:48
...
PHP程序,附代码:
$mongo = new MongoClient();
$db = $mongo->btss;
$hashs = $mongo->db->hash;
$hash = $hashs->insert(array('hash' => $msg));
var_dump($hash);

执行后返回:

array(4) { ["ok"]=> float(1) ["n"]=> int(0) ["err"]=> NULL ["errmsg"]=> NULL }

我在mongo中检查没有数据,但是这个错误又没有有用的信息,特此来请教下(GG也没有)

回复内容:

PHP程序,附代码:

$mongo = new MongoClient();
$db = $mongo->btss;
$hashs = $mongo->db->hash;
$hash = $hashs->insert(array('hash' => $msg));
var_dump($hash);

执行后返回:

array(4) { ["ok"]=> float(1) ["n"]=> int(0) ["err"]=> NULL ["errmsg"]=> NULL }

我在mongo中检查没有数据,但是这个错误又没有有用的信息,特此来请教下(GG也没有)

因为你把数据添加到了db这个数据库里,而不是btss

相关标签: mongodb php