Created
October 16, 2014 07:37
-
-
Save dodyagung/135c06065a1bba1c46d3 to your computer and use it in GitHub Desktop.
PHP weekdays
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
<?php | |
$now = date('j F Y'); | |
echo 'now = ' . $now . '<br />'; | |
$mod = strtotime($now . " + 10 weekdays"); | |
echo 'next 10 weekdays = ' . date('j F Y', $mod); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment