From 13d85a7f5e140e4983fcbaa22914ed6b16f31a78 Mon Sep 17 00:00:00 2001 From: Jason Woofenden Date: Sat, 6 Jan 2018 23:21:41 -0500 Subject: [PATCH] php7 compat for ymd_to_days, add str version --- time.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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) { -- 1.7.10.4