gpt4 book ai didi

mongodb - 如何使用 PHP 获取 MongoID 的字符串值?

转载 作者:IT老高 更新时间:2023-10-28 13:14:23 24 4
gpt4 key购买 nike

在进行插入后,我想使用 json_encode() 将对象传递给客户端。问题是,_id 值不包括在内。

$widget = array('text' => 'Some text');

$this->mongo->db->insert($widget);


If I echo $widget['_id'] the string value gets displays on the screen, but I want to do something like this:

$widget['widgetId'] = $widget['_id']->id;


So I can do json_encode() and include the widget id:

echo json_encode($widget);

最佳答案

相信这就是你所追求的。

$widget['_id']->{'$id'};

类似的东西。

$widget = array('text' => 'Some text');
$this->mongo->db->insert($widget);
$widget['widgetId'] = $widget['_id']->{'$id'};
echo json_encode($widget);

关于mongodb - 如何使用 PHP 获取 MongoID 的字符串值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7861332/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com