functional.php 208 B

1234567891011121314
  1. <?php
  2. namespace refill;
  3. class functional
  4. {
  5. public static function isDay()
  6. {
  7. $cur = time();
  8. $start = strtotime(date('Y-m-d',$cur));
  9. return ($cur > $start + 3600 * 6);
  10. }
  11. }