I want to get a reminding day left using timestamp and current date. Was wondering if I can do a simple subtraction using those.
How do I calculate the currentdate -timestamp?
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.
PHP’s timestamps are identical to a Unix timestamp – seconds since Jan 1 1970. So yeah, a simple subtraction will give you a time difference in seconds, which you can convert to days by diving by 86,400 (seconds in a day):