JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
added today_ymd()
[wfpl.git] / misc.php
1 <?php
2
3 #  Copyright (C) 2006 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 function unix_newlines($str) {
22         $str = str_replace("\r\n", "\n", $str);
23         return str_replace("\r", "\n", $str);
24 }
25
26 # return current year (all 4 digits)
27 function this_year() {
28         return strftime('%Y');
29 }
30
31 # return the number of the current month (1..12)
32 function this_month() {
33         return ereg_replace('^0', '', strftime('%m'));
34 }
35
36 # return today's date in yyyy-mm-dd format
37 function today_ymd() {
38         return strftime('%Y-%m-%d');
39 }
40
41 # php4 is broken, in that you cannot set a default value for a parameter that
42 # is passed by reference. So, this is set up to use the following screwy
43 # syntax:
44 #
45 # function foo($bar = 0) {
46 #   if($bar !== 0) {
47 #     $bar = $bar->ref;
48 #   }
49 #       ...
50 # }
51 #
52 # foo();
53 # foo(ref($baz));
54
55 class stupid_reference {
56         var $ref;
57         function stupid_reference(&$ref) {
58                 $this->ref = &$ref;
59         }
60 }
61 function ref(&$foo) {
62         return new stupid_reference($foo);
63 }
64
65 ?>