如何从json值中删除longnumber

时间:2014-10-07 23:39:50

标签: php arrays json mongodb object

我使用外部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
}

0 个答案:

没有答案