-
-
Save IgorDePaula/557b16b56a8f35af672a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$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