Skip to content

Instantly share code, notes, and snippets.

@ephrin
Created May 28, 2022 08:51
Show Gist options
  • Save ephrin/ca689dbc0c41ae77846e5b2f758af4cc to your computer and use it in GitHub Desktop.
Save ephrin/ca689dbc0c41ae77846e5b2f758af4cc to your computer and use it in GitHub Desktop.
calc days of week in month
<?php
function calcDays($daysToCalc, string $firstDay, string $lastDay)
{
$start = new \DateTime($firstDay);
$oneDay = new \DateInterval('P1D');
$end = (new \DateTime($lastDay))->sub($oneDay);
$day = $start;
$count = 0;
while ($day <= $end) {
if (in_array((int)$day->format('w'), $daysToCalc)) {
$count++;
}
$day = $day->add($oneDay);
}
echo $count . PHP_EOL;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment