Created
July 8, 2014 00:29
-
-
Save anonymous/0315c5047fbb76ebc7cb to your computer and use it in GitHub Desktop.
This file contains hidden or 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
$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