Week of the day for current date in php [closed]

Try

echo date('Y-m-d', strtotime('Monday this week'));
echo date('Y-m-d', strtotime('Sunday this week'));

Leave a Comment