JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added days_to_ymd() and ymd_to_days()
[wfpl.git] / time.php
1 <?php
2
3 #  Copyright (C) 2007 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it under the
8 #  terms of the GNU Lesser General Public License as published by the Free
9 #  Software Foundation; either version 2.1 of the License, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but WITHOUT ANY
13 #  WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 #  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for
15 #  more details.
16 #
17 #  You should have received a copy of the GNU Lesser General Public License
18 #  along with wfpl; if not, write to the Free Software Foundation, Inc., 51
19 #  Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
20
21
22 # This file contains functions to manipulate/calculate dates/times
23
24 function ymd_to_days($year, $month, $day) {
25         return (int)(mktime(12,0,0,$month,$day, $year, 0) / 86400);
26 }
27
28 function days_to_ymd($days) {
29         return explode('-', date('Y-n-j', $days * 86400 + 43200));
30 }
31
32 function days_to_weekday_name($days) {
33         $day_names = array('Thursday', 'Friday', 'Saturday', 'Sunday', 'Monday', 'Tuesday', 'Wednesday');
34         return $day_names[$days % 7];
35 }
36
37
38 #function time_test() {
39 #       for($i = 0; $i < 41 * 86400; $i += 86399) {
40 #               echo "seconds: $i";
41 #               $days = (int)($i / 86400);
42 #               list($year, $month, $day) = days_to_ymd($days);
43 #               echo ", days_to_ymd($days): $year-$month-$day";
44 #               $days = ymd_to_days($year, $month, $day);
45 #               echo ", ymd_to_days($year, $month, $day): $days\n<br>";
46 #       }
47 #}