如何确定和指定facebook fql时间戳



我一直在查询表来搜索几个月前发布的一篇文章:

SELECT post_id, message  FROM stream WHERE source_id=group_ID and actor_id=USER_ID

但是,它没有返回任何结果,因为文章的发布日期不是当前的。所以我想在这个表中指定updated_time字段。

updated_time如果我想要它不少于3个月的时间,正确的值是什么?

say, updated_time <now()> 3_months_before

提前感谢。

updated_timeUNIX时间戳

在PHP中可以使用strtotime -

strtotime("-3 month") //3 months ago
strtotime("now") //now
Javascript在<<p> strong> -
var d = new Date();
d.setMonth(d.getMonth() - 3);
Math.round(d.getTime() / 1000); //3 months ago
Math.round((new Date()).getTime() / 1000); //now

相关内容

  • 没有找到相关文章

最新更新