Last active
June 26, 2018 20:16
-
-
Save raank/8b8df71fabcb2583fe3e752c714adeb0 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
<?php | |
$wk = now()->dayOfWeekIso; | |
$da = now()->day; | |
if ($wk <= 4) { | |
if ($wk == 1) { | |
// toda segunda feira | |
$type = 'weekly'; | |
} elseif (($da >= 15 || $da <= 18) && ($wk >= 1 || $wk <= 4)) { | |
// quinzenal | |
$type = 'fortnightly'; | |
} elseif ($da == 1) { | |
// mensal | |
$type = 'monthly'; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment