tags:

views:

8

answers:

1

Hello ALL, By using the function Date(ymdHis) i am able to retrieve the value of the current date and time until seconds. I wanted to find out what do we need to do so that we retrieve even until a milli second. Thanks in advance.

A: 

microtime() returns the current time with microseconds. You will have to parse them by hand, though, date() can deal only with second-based timestamps.

Check out this User Contributed Note for an example on how to deal with it.

Pekka