Skip to content

Instantly share code, notes, and snippets.

@raank
Last active June 26, 2018 20:16
Show Gist options
  • Save raank/8b8df71fabcb2583fe3e752c714adeb0 to your computer and use it in GitHub Desktop.
Save raank/8b8df71fabcb2583fe3e752c714adeb0 to your computer and use it in GitHub Desktop.
<?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