我正在尝试将数据库从 MySQL 转换为 MongoDB,但我遇到了问题。我不知道查询应该如何查找 MongoDB。
$hd='';
$count = count($args[1]);
for($i=0;$i<$count-1;$i++){
$hd.="playerId='" . $args[1][$i] . "' OR ";
}
$hd.="playerId='".$args[1][$count-1]."'";
$h1=mysql_query(sprintf("SELECT * FROM player where ".$hd));
谁知道怎么修它?