With get the date of the first day of the week and last day of the week in php, first day Monday and the last day Friday, for example I have the date 2017-05-23 and I want to kn
Something like this:
$mon = $fri = new DateTime('2017-05-23'); $mon->modify('Last Monday'); $fri->modify('Next Friday'); var_dump($mon); var_dump($fri);