Skip to content

Instantly share code, notes, and snippets.

Created July 8, 2014 00:29
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/0315c5047fbb76ebc7cb to your computer and use it in GitHub Desktop.
Save anonymous/0315c5047fbb76ebc7cb to your computer and use it in GitHub Desktop.
$diasParaSomar = 10;
$dataFinal = new DateTime('now');
while ($diasParaSomar) {
$dataFinal = $dataFinal->add(new DateInterval('P1D'));
if (in_array($dataFinal->format('w'), array(0,6))) {
continue;
}
$diasParaSomar--;
}
echo $dataFinal->format('d/m/Y H:i:s');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment