标签: php mongodb aggregation-framework
我的mongoDB有字段:$ creatime,我想添加字段来运行php。 怎么办?
$ops = array( array('$match' => $query), array('$addFields' => array('date_code' => functionPHP('$create_time'))), ); $results = $col->aggregate($ops,array('cursor' => array('batchSize' => 200)));