0
我知道你可以手動做到這一點,但這不是重點。我需要在我的mongoDB查詢中加入今天的日期並使其運行。把今天的日期放在數組中
手工以下工作正常。
$cursor = $collection->find(array("date"=> array('$gt' => '01/10/2013')));
但是當我使用下面的
$date = date('d/m/Y');
$cursor = $collection->find(array("date"=> array('$gt' => '$date')));
它不工作
我已經試過
$cursor = $collection->find(array("date"=> array('$gt' => $date)));
$cursor = $collection->find(array("date"=> array('$gt' => "'".$date."'")));
$cursor = $collection->find(array("date"=> array('$gt' => \"$date\")));
沒有上述工作
嘗試使用'MongoDate':http://php.net/manual/en/class.mongodate.php – WiredPrairie