Skip to content

Instantly share code, notes, and snippets.

@Rudde
Last active April 8, 2016 16:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Rudde/a8d9555dc2dbf325a00fef10f6561731 to your computer and use it in GitHub Desktop.
Save Rudde/a8d9555dc2dbf325a00fef10f6561731 to your computer and use it in GitHub Desktop.
Gives first day of the first week of the current month
<?php
/**
* Created by PhpStorm.
* User: Rudde
* Date: 01.04.2016
* Time: 00.25
*/
function firstDayofFirstWeekinCurrentMonth($date = NULL) {
$date = is_null ($date) ? new DateTime('first day of this month') : $date->modify('first day of this month');
$date->modify(('Sunday' == $date->format('l')) ? 'Monday last week' : 'Monday this week');
return $date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment