Getting date format m-d-Y H:i:s.u from milliseconds

You can readily do this this with the input format U.u. $now = DateTime::createFromFormat(‘U.u’, microtime(true)); echo $now->format(“m-d-Y H:i:s.u”); This produces the following output: 04-13-2015 05:56:22.082300 From the PHP manual page for date formats: U = Seconds since the Unix Epoch u = Microseconds http://php.net/manual/en/function.date.php Thanks goes to giggsey for pointing out a flaw in my … Read more

Format a datetime into a string with milliseconds

To get a date string with milliseconds, use [:-3] to trim the last three digits of %f (microseconds): >>> from datetime import datetime >>> datetime.utcnow().strftime(‘%Y-%m-%d %H:%M:%S.%f’)[:-3] ‘2022-09-24 10:18:32.926’ Or slightly shorter: >>> from datetime import datetime >>> datetime.utcnow().strftime(‘%F %T.%f’)[:-3]

How to get milliseconds from LocalDateTime in Java 8

I’m not entirely sure what you mean by “current milliseconds” but I’ll assume it’s the number of milliseconds since the “epoch,” namely midnight, January 1, 1970 UTC. If you want to find the number of milliseconds since the epoch right now, then use System.currentTimeMillis() as Anubian Noob has pointed out. If so, there’s no reason … Read more