JasonWoof Got questions, comments, patches, etc.? Contact Jason Woofenden
metaform working. added some encodings and formatters.
[wfpl.git] / format.php
1 <?php
2
3 #  Copyright (C) 2005 Jason Woofenden
4 #
5 #  This file is part of wfpl.
6 #
7 #  wfpl is free software; you can redistribute it and/or modify it
8 #  under the terms of the GNU General Public License as published by
9 #  the Free Software Foundation; either version 2, or (at your option)
10 #  any later version.
11 #
12 #  wfpl is distributed in the hope that it will be useful, but
13 #  WITHOUT ANY WARRANTY; without even the implied warranty of
14 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 #  General Public License for more details.
16 #
17 #  You should have received a copy of the GNU General Public License
18 #  along with wfpl; see the file COPYING.  If not, write to the
19 #  Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
20 #  MA 02111-1307, USA.
21
22
23 # This file contains basic encodings
24
25 function format_oneline($str) {
26         $str = str_replace("\r", '', $str);
27         return str_replace("\n", '', $str);
28 }
29
30 function format_unix($str) {
31         return unix_newlines($str);
32 }
33
34 function format_yesno($str) {
35         if($str) {
36                 return "Yes";
37         } else {
38                 return "No";
39         }
40 }
41
42 function format_email($str) {
43         # FIXME
44         return format_oneline($str);
45 }
46
47 function format_money($str, $display_cents = true) {
48         $str = ereg_replace('[^0-9.]', '', $str);
49         if($display_cents) {
50                 $int = (int)($str * 100);
51                 $cents = $int % 100;
52                 $cents = sprintf('.%02d', $cents);
53                 $int = (int)($str); # go from the source again, so we can print numbers above 2M without cents.
54         } else {
55                 $cents = '';
56                 $int = round($str);
57         }
58         $chars = (string)$int;
59         $output = '';
60         $comma = 4;
61         $index = strlen($chars);
62         while($index) {
63                 --$index;
64                 --$comma;
65                 if($comma == 0) {
66                         $comma = 3;
67                         $output = ',' . $output;
68                 }
69                 $char = substr($chars, $index, 1);
70                 $output = $char . $output;
71         }
72         $output = '$' . $output . $cents;
73         return $output;
74 }
75
76 function format_dollars($str) {
77         return format_money($str, false);
78 }
79
80 function format_phone($str) {
81         $str = ereg_replace('[^0-9]', '', $str);
82         $str = ereg_replace('^1*', '', $str);
83         $len = strlen($str);
84         $output = '';
85
86         if($len < 10 && $len != 7) {
87                 #NOT A VALID PHONE NUMBER
88                 return $str;
89         }
90
91         if($len > 10) {
92                 $output = ' ext: ' . substr($str, 10);
93                 $len = 10;
94         }
95
96         if($len == 10) {
97                 $area = substr($str, 0, 3);
98                 $str = substr($str, 3);
99         }
100
101         $output = substr($str, 3) . $output;
102         $output = substr($str, 0, 3) . '-' . $output;
103
104         if($area) {
105                 $output = "($area) " . $output;
106         }
107
108         return $output;
109 }
110
111
112 #function ftest($val) {
113 #       printf("$val: '%s'<br />\n", format_phone($val, true));
114 #}
115 #
116 #echo "FORMAT TESTS<br><br>";
117 #ftest("$3");
118 #ftest("3.99");
119 #ftest("3.5");
120 #ftest("891234");
121 #ftest("8221234");
122 #ftest("82212334");
123 #ftest("122313234");
124 #ftest("1158221234");
125 #ftest("1558221234");
126 #ftest("12235513234");
127 #ftest("122355123334");
128 #ftest("1585552212334");
129 #ftest("15855522123334");
130
131 ?>