标签: php mongodb
我使用以下代码:
${tab.id}
但没有结果。请帮帮我。
答案 0 :(得分:0)
这是因为你的$gpids是一个字符串,你最终在$in查询中放了一个元素数组。这应该有效:
$gpids
$in
$collection5->find(array('groupId' => array('$in' => array_unique($groupIds))));