JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
php7 compat for ymd_to_days, add str version
authorJason Woofenden <jason@jasonwoof.com>
Sun, 7 Jan 2018 04:21:41 +0000 (23:21 -0500)
committerJason Woofenden <jason@jasonwoof.com>
Sun, 7 Jan 2018 04:21:41 +0000 (23:21 -0500)
time.php

index 9e888b9..9aa479d 100644 (file)
--- 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) {