X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=time.php;h=9e888b90c27e0121cfadce95cab0065f8ab7e417;hb=912bdab05d6262ab07e7ea6664192f97239db3e1;hp=cb9e7a81e55eb5adce01a902a6567440e1556207;hpb=860770c4a86811457b77e62f888920162d664d77;p=wfpl.git diff --git a/time.php b/time.php index cb9e7a8..9e888b9 100644 --- a/time.php +++ b/time.php @@ -1,23 +1,14 @@ . +# This program is in the public domain within the United States. Additionally, +# we waive copyright and related rights in the work worldwide through the CC0 +# 1.0 Universal public domain dedication, which can be found at +# http://creativecommons.org/publicdomain/zero/1.0/ # This file contains functions to manipulate/calculate dates/times +# FIXME make it so you can call this with a string YYYY-MM-DD function ymd_to_days($year, $month, $day) { return (int)(mktime(12,0,0,$month,$day, $year, 0) / 86400); } @@ -75,8 +66,8 @@ function clean_ymd($year, $month, $day) { # pass date like 3/21/99 # returns array(year, month, day) function mdy_clean($date) { - $date = ereg_replace('[^0-9/-]', '', $date); - $date = ereg_replace('-', '/', $date); + $date = preg_replace('|[^0-9/-]|', '', $date); + $date = preg_replace('|-|', '/', $date); $parts = explode('/', $date); switch(count($parts)) { case 1: @@ -107,13 +98,13 @@ function mdy_to_ymd($date) { # pass date like 2008-11-21 # returns array(year, month, day) function ymd_clean($date) { - $date = ereg_replace('[^0-9/-]', '', $date); - $date = ereg_replace('/', '-', $date); + $date = preg_replace('|[^0-9/-]|', '', $date); + $date = preg_replace('|/|', '-', $date); $parts = explode('-', $date); switch(count($parts)) { case 1: $year = $parts[0]; - if(strlen($year) == 0) { + if(strlen($year) == 0 || $year < 1971 || $year > 2050) { list($year, $month, $day) = explode('-', date('Y-m-d')); } else { list($month, $day) = explode('-', date('m-d')); @@ -135,12 +126,3 @@ function ymd_to_mdy($str) { list($year, $month, $day) = ymd_clean($str); return sprintf('%02u/%02u/%04u', $month, $day, $year); } - -function enc_mdy($str) { - return ymd_to_mdy($str); -} - -function format_ymd($str) { - list($year, $month, $day) = ymd_clean($str); - return sprintf('%04u-%02u-%02u', $year, $month, $day); -}