Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP ドライバーを使用して日付/時刻 (UTC) を MongoDB に保存するにはどうすればよいですか? したがって、PHPで次のようにします。
$utc = gmmktime();
私は単に行うことができます:
$utc = new MongoDate($utc);
ありがとう。
うん、これは解決策です:
new MongoDate(gmmktime());