<?php function week_date($weeks = 0) { $start = new DateTime("monday this week"); $end = new DateTime(); $start->modify("$weeks weeks"); $end->modify("$weeks weeks"); return $start->format('Y-m-d') . ' ' . $end->format('Y-m-d'); } echo week_date() . "\n"; // this week echo week_date(-1) . "\n"; // last week echo week_date(1) . "\n"; // next week
You have javascript disabled. You will not be able to edit any code.
Value for `_results` contains invalid data `array`