Tagged Questions
4
votes
1answer
1k views
How do I create a new Joda DateTime truncated to the last hour?
I am pulling timestamps from a file that I want to create a new DateTime for, but I want to create the DateTime at the floor of the hour (or any Joda Period will do).
How Can I do this?
1
vote
4answers
582 views
Rounding a MYSQL datetime to earliest 15 minute interval in milliseconds (PHP)
I'm fetching a datetime from MYSQL which looks like:
2010-08-11 11:18:28
I need to convert it into the "floor" or the earliest 15 minute interval and output in milliseconds for another function.
...