php date format YYYY-MM-DD minus or add one week from now?

Use strtotime()

echo date('d-m-Y', strtotime("+1 week")); //1 week in the future
echo date('d-m-Y', strtotime("-1 week")); //1 week ago

Leave a Comment