This question already has an answer here:
这个问题已经有了答案:
- getting date format m-d-Y H:i:s.u from milliseconds 13 answers
- H:i:s。从13毫秒开始
if I use date('Y-m-d H:i:s.u')
the output will be some thing like 2015-11-03 13:25:25.253000. But i need 2015-11-03 13:25:25.253 how I can do it?
如果我使用date('Y-m-d H: I:s.u'),输出将是类似于2015-11-03 13:25:25 - 253000的东西。但是我需要2015-11-03 13:25 .253我怎么做呢?
1 个解决方案
#1
0
Try this date('Y-m-d H:i:s'.substr((string)microtime(), 1, 4))
试试这个日期('Y-m-d H:i:s'.substr(string)microtime(), 1,4))
or what Daniel suggests in the comment down below.
或者丹尼尔在下面的评论中建议的。
#1
0
Try this date('Y-m-d H:i:s'.substr((string)microtime(), 1, 4))
试试这个日期('Y-m-d H:i:s'.substr(string)microtime(), 1,4))
or what Daniel suggests in the comment down below.
或者丹尼尔在下面的评论中建议的。