MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

posso passare la query mongodb come stringa in php

dovresti scrivere json nella tua area di testo. come:

{
    "Chat_time": {
        "$gt" => "xxx",
        "$lte" => "yyy"
    }
}

in php

// json string to array using json_decode
$query = json_decode($_POST['txt_area'], true);
$user_code = $coll->find($query);