Codeigniter MongoDB扩展之使用Aggregate实现Sum方法
Codeigniter MongoDB扩展之使用Aggregate实现Sum方法
以下就是我在使用
Codeigniter
的MongoDB
扩展时,添加的一个扩展就是使用
MongoDB
的Aggregate
实现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);
}
}
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。