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.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.