From: Jason Woofenden Date: Sun, 7 Jan 2018 04:21:41 +0000 (-0500) Subject: php7 compat for ymd_to_days, add str version X-Git-Url: https://jasonwoof.com/gitweb/?p=wfpl.git;a=commitdiff_plain;h=13d85a7f5e140e4983fcbaa22914ed6b16f31a78 php7 compat for ymd_to_days, add str version --- 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) {