php mongodb find - 返回计算值

时间:2011-06-06 00:56:12

标签: php mongodb date-arithmetic

在PHP中 - > MongoDB,如何将字段作为计算值返回?

$this->Collection = $this->db->$theDB;  
$cursor = $this->Collection->find();

例如,我的一个字段是出生日期:

DOB : 1/1/1980

相反,我想回到AGE。当前日期 - DOB =年龄。

这可能/如何?

2 个答案:

答案 0 :(得分:0)

不,这是不可能的。

如何创建将从dob返回的年龄的方法?

getAgeFromDOB(date dob)
{
  return Current Date - dob;
}

答案 1 :(得分:0)

您可以执行map-reduce并处理年龄