Skip to content

Instantly share code, notes, and snippets.

@jpdevries
Last active August 29, 2015 14:18
Show Gist options
  • Save jpdevries/3730b123caa22f7e90c3 to your computer and use it in GitHub Desktop.
Save jpdevries/3730b123caa22f7e90c3 to your computer and use it in GitHub Desktop.
isNakedDay PHP Snippet for MODX Revolution
<?php
$start = date('U', mktime(-12, 0, 0, 04, $d, date('Y')));
$end = date('U', mktime(36, 0, 0, 04, $d, date('Y')));
$z = date('Z') * -1;
$now = time() + $z;
if ( $now >= $start && $now <= $end ) {
return true;
}
return false;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment