MongoDB
 sql >> Datenbank >  >> NoSQL >> MongoDB

Kann ich die Mongodb-Abfrage als Zeichenfolge in PHP übergeben

Sie sollten json in Ihren Textbereich schreiben. wie:

{
    "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);