how can I make a conditional statement like if date(“Y-m-d h:i:s”); is more than 30 seconds after date(“Y-m-d h:i:s”);.
I’ve previously used something like date(“Y-m-d h:i:s”); < date(“Y-m-d h:i:s”); + 30, however this doesn’t seem to work.
Help?
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.
Use
strtotime()to convert them to UNIX time.E.g.:
or