我使用外部mongodb获取json结果。我喜欢包含它的1.000.000数组(这是数百万个数组中的一个):
{
"name" : "A Bubble",
"summonerId" : NumberLong(41119375),
"region" : "euw",
"level" : NumberLong(30)
}
如何从代码中删除Numberlong()
? x数量的数组需要发生。我正在使用php文件。
这就是我想要的:
{
"name" : "A Bubble",
"summonerId" : 41119375,
"region" : "euw",
"level" : 30
}