Last Updated: February 25, 2016
·
415
· arispublic

[PHP] How to get monday on certain date

I want to get monday on certain date.

Here is the code:

<?php
$the_date = "2013-11-27";
print date('Y-m-d', strtotime(date('o-\\WW', strtotime($the_date))));
?>

The result is:

2013-11-25