使用php进行mongodb日期聚合运算符时区调整

我正在尝试使用日期聚合运算符调整时区.
我需要在$signs.timestamp字段上进行-7小时调整.

这是我的代码

function statsSignatures() {
    $cursor = $this->db->collection->users->aggregate(
        array('$unwind' => '$signs'),
        array('$project'=>array(
            'signs'=>'$signs',
            'y'=>array('$year'=>'$signs.timestamp'),
            'm'=>array('$month'=>'$signs.timestamp'),
            'd'=>array('$dayOfMonth'=>'$signs.timestamp'),
            'h'=>array('$hour'=>'$signs.timestamp')
        )),
        array('$group'=>array(
            '_id'=>array('year'=>'$y','month'=>'$m','day'=>'$d','hour'=>'$h'),
            'total'=>array('$sum'=>1)
        )),
        array('$sort'=>array(
            '_id.year'=>1,
            '_id.month'=>1,
            '_id.day'=>1,
            '_id.hour'=>1
        ))
    );
    return $cursor['result'];
}

我正在使用MongoDB版本2.6.3.

非常感谢 !

解决方法:

您可以使用带有$subtract运算符的$project对Date字段进行-7小时调整:

{
    $project : { 
        ts : { $subtract : [ "$signs.timestamp", 25200000 ] }
    }
}

// 25200000 == 1000 milis x 60 sec x 60 mins x 7 h 

预计字段ts是偏移-7小时的日期.

编辑

这是使用$subtract时正确的PHP语法.

array(
    '$project' => array( 
        'ts' => array('$subtract' => array('$signs.timestamp', 25200000))
    )
)

Subtract接受一组值,而不是key =>值对.

相关文章

MongoTemplate 是Spring Data MongoDB 中的一个核心类,为 S...
笔者今天要分享的是一个项目重构过程中如何将数据库选型由原...
mongodb/mongoTemplate.upsert批量插入更新数据的实现
进入官网下载官网安装点击next勾选同意,点击next点击custom...
头歌 MongoDB实验——数据库基本操作
期末考试复习总结