I am trying to use PHP’s Date Function to get the date of 7 days earlier in YYYY-MM-DD format.
date('Y-m-d');
when i try
date('Y-m-d-7');
i get an error
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 the
strtotimemethod provided by PHP.date('Y-m-d', strtotime('-7 days'))Thanks to @lonesomeday for pointing out my mistake in the comments 😉