fixed message deleting problem
[squirrelmail.git] / functions / strings.php
1 <?php
2
3 $strings_php = true;
4
5 //*************************************************************************
6 // Count the number of occurances of $needle are in $haystack.
7 //*************************************************************************
8 function countCharInString($haystack, $needle) {
9 $len = strlen($haystack);
10 for ($i = 0; $i < $len; $i++) {
11 if ($haystack[$i] == $needle)
12 $count++;
13 }
14 return $count;
15 }
16
17 //*************************************************************************
18 // Read from the back of $haystack until $needle is found, or the begining
19 // of the $haystack is reached.
20 //*************************************************************************
21 function readShortMailboxName($haystack, $needle) {
22 if (substr($haystack, -1) == $needle)
23 $haystack = substr($haystack, 0, strlen($haystack) - 1);
24
25 if (strrpos($haystack, $needle)) {
26 $pos = strrpos($haystack, $needle) + 1;
27 $data = substr($haystack, $pos, strlen($haystack));
28 } else {
29 $data = $haystack;
30 }
31 return $data;
32 }
33
34 // Wraps text at $wrap characters
35 function wordWrap($passed, $wrap) {
36 $passed = str_replace("&gt;", ">", $passed);
37 $passed = str_replace("&lt;", "<", $passed);
38
39 $words = explode(" ", trim($passed));
40 $i = 0;
41 $line_len = strlen($words[$i])+1;
42 $line = "";
43 while ($i < count($words)) {
44 while ($line_len < $wrap) {
45 $line = "$line$words[$i] ";
46 $i++;
47 $line_len = $line_len + strlen($words[$i])+1;
48 }
49 $line_len = strlen($words[$i])+1;
50 if ($line_len < $wrap) {
51 if ($i < count($words)) // don't <BR> the last line
52 $line = "$line\n";
53 } else {
54 $endline = $words[$i];
55 while ($line_len >= $wrap) {
56 $bigline = substr($endline, 0, $wrap);
57 $endline = substr($endline, $wrap, strlen($endline));
58 $line_len = strlen($endline);
59 $line = "$line$bigline<BR>";
60 }
61 $line = "$line$endline<BR>";
62 $i++;
63 }
64 }
65
66 $line = str_replace(">", "&gt;", $line);
67 $line = str_replace("<", "&lt;", $line);
68 return $line;
69 }
70
71 /** Returns an array of email addresses **/
72 function parseAddrs($text) {
73 if (trim($text) == "") {
74 return;
75 }
76 $text = str_replace(" ", "", $text);
77 $text = str_replace(",", ";", $text);
78 $array = explode(";", $text);
79 for ($i = 0; $i < count ($array); $i++) {
80 $array[$i] = eregi_replace ("^.*\<", "", $array[$i]);
81 $array[$i] = eregi_replace ("\>.*$", "", $array[$i]);
82 }
83 return $array;
84 }
85
86 /** Returns a line of comma separated email addresses from an array **/
87 function getLineOfAddrs($array) {
88 $to_line = "";
89 for ($i = 0; $i < count($array); $i++) {
90 if ($to_line)
91 $to_line = "$to_line, $array[$i]";
92 else
93 $to_line = "$array[$i]";
94 }
95 return $to_line;
96 }
97
98 function translateText($body, $wrap_at, $charset) {
99 include ("../functions/url_parser.php");
100 /** Add any parsing you want to in here */
101 $body = trim($body);
102 $body_ary = explode("\n", $body);
103
104 for ($i = 0; $i < count($body_ary); $i++) {
105 $line = $body_ary[$i];
106 $line = "^^$line";
107
108 //$line = str_replace(">", "&gt;", $line);
109 //$line = str_replace("<", "&lt;", $line);
110 //$line = htmlspecialchars($line);
111
112 if (strlen($line) >= $wrap_at) // -2 because of the ^^ at the beginning
113 $line = wordWrap($line, $wrap_at);
114
115 $line = charset_decode($charset, $line);
116
117 $line = str_replace(" ", "&nbsp;", $line);
118 $line = str_replace("\t", "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;", $line);
119 $line = nl2br($line);
120
121 if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;&gt;") == 2) {
122 $line = substr($line, 2, strlen($line));
123 $line = "<TT><FONT COLOR=FF0000>$line</FONT></TT><BR>\n";
124 } else if (strpos(trim(str_replace("&nbsp;", "", $line)), "&gt;") == 2) {
125 $line = substr($line, 2, strlen($line));
126 $line = "<TT><FONT COLOR=800000>$line</FONT></TT><BR>\n";
127 } else {
128 $line = substr($line, 2, strlen($line));
129 $line = "<TT><FONT COLOR=000000>$line</FONT></TT><BR>\n";
130 }
131
132 $line = parseEmail ($line);
133 $line = parseUrl ($line);
134 $new_body[$i] = "$line";
135 }
136 $bdy = implode("\n", $new_body);
137 return $bdy;
138 }
139
140 /* SquirrelMail version number -- DO NOT CHANGE */
141 $version = "0.4pre1";
142
143
144 function find_mailbox_name ($mailbox) {
145 $mailbox = trim($mailbox);
146 if (substr($mailbox, strlen($mailbox)-1, strlen($mailbox)) == "\"") {
147 $mailbox = substr($mailbox, 0, strlen($mailbox) - 1);
148 $pos = strrpos ($mailbox, "\"")+1;
149 $box = substr($mailbox, $pos);
150 } else {
151 $box = substr($mailbox, strrpos($mailbox, " ")+1, strlen($mailbox));
152 }
153 return $box;
154 }
155
156 function replace_spaces ($string) {
157 return str_replace(" ", "&nbsp;", $string);
158 }
159
160 function replace_escaped_spaces ($string) {
161 return str_replace("&nbsp;", " ", $string);
162 }
163 ?>