0

如何使用 PHP 驱动程序将日期/时间 (UTC) 存储到 MongoDB?所以在 PHP 中,如果我这样做:

$utc = gmmktime();

我可以简单地做:

$utc = new MongoDate($utc);

谢谢。

4

1 回答 1

1

Yeap, this is the solution:

new MongoDate(gmmktime());
于 2012-05-29T06:47:09.287 回答