Except for date function, is there any function that can decode date? I think the real date should be in recent days, not a day in 2033.
<?php
$date = '1294605921000';
echo date("m-d-Y H:i:s", $date);
//11-08-2033 23:55:20
?>
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.
No, but since that timestamp is likely in milliseconds instead of seconds, divide it by 1000: