X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=blobdiff_plain;f=time.php;h=9aa479dd5ebb3b280ffb83cae8298080ae1737ac;hp=9e888b90c27e0121cfadce95cab0065f8ab7e417;hb=HEAD;hpb=900e09b8300463e3dd42e89c21de181520513e95 diff --git a/time.php b/time.php index 9e888b9..9aa479d 100644 --- a/time.php +++ b/time.php @@ -8,9 +8,13 @@ # This file contains functions to manipulate/calculate dates/times -# FIXME make it so you can call this with a string YYYY-MM-DD +# argument in format: YYYY-MM-DD +function yyyymmdd_to_days($str) { + return ymd_to_days((int)substr($str, 0, 4), (int)substr($str, 5, 2), (int)substr($str, 8, 2)); +} +# args must be integers function ymd_to_days($year, $month, $day) { - return (int)(mktime(12,0,0,$month,$day, $year, 0) / 86400); + return (int)(mktime(12,0,0,$month,$day, $year) / 86400); } function days_to_ymd($days) {