How can I use the following 16-digit timestamp (from an XML file) with PHP’s date() function?
1295076698126000 // 15-01-2011 08:31:38.126
1286697695521000 // 10-10-2010 10:01:35.521
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.
Those timestamps are in microseconds. However, since PHP uses integers for timestamps in seconds with
date(), you won’t be able to obtain the microsecond value. You’re still able to print the rest of the date by dividing the timestamp by a million (1 million microseconds = 1 second), and passing the quotient todate():EDIT: Hacky, but you can perform manual arithmetic to get the milliseconds and output it separately as a workaround, like this:
For reusability the
DateTimeclass is a good option. Or, a custom function: