Here\'s a summary of the issue: On Sundays, strtotime(\'this week\') returns the start of next week.
strtotime(\'this week\')
In PHP, the week seems to start on Monday. But, on
Here is how you can get Monday of current week:
echo date("Y-m-d", strtotime(date('o-\\WW')));