Get date of Monday in current week in PHP 4

Ben Jones picture Ben Jones · Jun 2, 2010 · Viewed 53.2k times · Source

I need to find the date of Monday in the current week. How can I do this in PHP 4?

Answer

Davidcologne picture Davidcologne · Nov 3, 2010

Easisest way:

$time = strtotime('monday this week');