Skip to content

Instantly share code, notes, and snippets.

@ismaels
Last active March 30, 2018 22:06
Show Gist options
  • Save ismaels/f0ccba1e3a54985364ca772ff0d6347b to your computer and use it in GitHub Desktop.
Save ismaels/f0ccba1e3a54985364ca772ff0d6347b to your computer and use it in GitHub Desktop.
<?php
function getNextLotteryDay($dateAsString=null) {
$date = isset($dateAsString) ? new DateTime($dateAsString) : new DateTime();
$weekDay = $date->format('w');
$days = $weekDay < 3 ? 3 - $weekDay : 6 - $weekDay;
$date->add(new DateInterval("P${days}D"));
echo $date->format('Y-m-d');
}
getNextLotteryDay("2018-03-19");
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment