将mongo bash $或命令转换为php

时间:2011-12-08 16:50:19

标签: php mongodb

如何将{“ID”:1,$或:[{'Age':'0'},{'Age':0}]}转换为PHP命令。 我试过(array('ID'=> 1,数组('$或'=>数组(数组('Age'=> 0),数组('Age'=>'0'))))

但没有得到正确的结果。请帮忙。

1 个答案:

答案 0 :(得分:1)

如果我理解正确,我认为你只是想:

$json = '<your string>';
$result = json_decode($json);