码迷,mamicode.com
首页 > 数据库 > 详细

Codeigniter MongoDB扩展之使用Aggregate实现Sum方法

时间:2015-01-07 01:48:03      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:

本篇文章由:http://xinpure.com/2015/01/07/codeigniter-mongodb%e6%89%a9%e5%b1%95%e4%b9%8b%e4%bd%bf%e7%94%a8aggregate%e6%96%b9%e6%b3%95%e5%ae%9e%e7%8e%b0mysql%e7%9a%84sum%e6%96%b9%e6%b3%95/

Codeigniter MongoDB扩展之使用Aggregate实现Sum方法

以下就是我在使用 CodeigniterMongoDB 扩展时,添加的一个扩展

就是使用 MongoDBAggregate 实现 Mysql 中的 Sum 方法

/* Controller.php */

$option = array (
    array (
            ‘$match‘ => array (
                    ‘match_1‘ => ‘value_1‘,
                    ‘match_2‘ => ‘value_2‘
            )
    ),
    array (
            ‘$group‘ => array (
                    ‘_id‘   => null,
                    ‘sum_1‘ => [‘$sum‘ => ‘$amount_1‘],
                    ‘sum_2‘ => [‘$sum‘ => ‘$amount_2‘],
                    ‘sum_3‘ => [‘$sum‘ => ‘$amount_3‘]
            )
        )
);

$result = $this -> mongo_db -> aggregate(‘collection‘,   $option);


/* Mongo_db.php */

public function aggregate ($collection, $option = array())
{
    try {
            return $this -> db -> {$collection} -> aggregate($option);
    }
    catch (Exception $e) {
            show_error("Unable to aggregate Mongo Databases: {$e->getMessage()}", 500);
    }
}

Codeigniter MongoDB扩展之使用Aggregate实现Sum方法

标签:

原文地址:http://www.cnblogs.com/xinpureZhu/p/4207439.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!