Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like UTF8 often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use UTF8, and based on these observations, apply Extract Interface, too.
1 | <?php |
||
13 | class UTF8 |
||
14 | { |
||
15 | /** |
||
16 | * @var array |
||
17 | */ |
||
18 | protected static $win1252ToUtf8 = array( |
||
19 | 128 => "\xe2\x82\xac", // EURO SIGN |
||
20 | 130 => "\xe2\x80\x9a", // SINGLE LOW-9 QUOTATION MARK |
||
21 | 131 => "\xc6\x92", // LATIN SMALL LETTER F WITH HOOK |
||
22 | 132 => "\xe2\x80\x9e", // DOUBLE LOW-9 QUOTATION MARK |
||
23 | 133 => "\xe2\x80\xa6", // HORIZONTAL ELLIPSIS |
||
24 | 134 => "\xe2\x80\xa0", // DAGGER |
||
25 | 135 => "\xe2\x80\xa1", // DOUBLE DAGGER |
||
26 | 136 => "\xcb\x86", // MODIFIER LETTER CIRCUMFLEX ACCENT |
||
27 | 137 => "\xe2\x80\xb0", // PER MILLE SIGN |
||
28 | 138 => "\xc5\xa0", // LATIN CAPITAL LETTER S WITH CARON |
||
29 | 139 => "\xe2\x80\xb9", // SINGLE LEFT-POINTING ANGLE QUOTE |
||
30 | 140 => "\xc5\x92", // LATIN CAPITAL LIGATURE OE |
||
31 | 142 => "\xc5\xbd", // LATIN CAPITAL LETTER Z WITH CARON |
||
32 | 145 => "\xe2\x80\x98", // LEFT SINGLE QUOTATION MARK |
||
33 | 146 => "\xe2\x80\x99", // RIGHT SINGLE QUOTATION MARK |
||
34 | 147 => "\xe2\x80\x9c", // LEFT DOUBLE QUOTATION MARK |
||
35 | 148 => "\xe2\x80\x9d", // RIGHT DOUBLE QUOTATION MARK |
||
36 | 149 => "\xe2\x80\xa2", // BULLET |
||
37 | 150 => "\xe2\x80\x93", // EN DASH |
||
38 | 151 => "\xe2\x80\x94", // EM DASH |
||
39 | 152 => "\xcb\x9c", // SMALL TILDE |
||
40 | 153 => "\xe2\x84\xa2", // TRADE MARK SIGN |
||
41 | 154 => "\xc5\xa1", // LATIN SMALL LETTER S WITH CARON |
||
42 | 155 => "\xe2\x80\xba", // SINGLE RIGHT-POINTING ANGLE QUOTE |
||
43 | 156 => "\xc5\x93", // LATIN SMALL LIGATURE OE |
||
44 | 158 => "\xc5\xbe", // LATIN SMALL LETTER Z WITH CARON |
||
45 | 159 => "\xc5\xb8", // LATIN CAPITAL LETTER Y WITH DIAERESIS |
||
46 | ); |
||
47 | |||
48 | /** |
||
49 | * @var array |
||
50 | */ |
||
51 | protected static $cp1252ToUtf8 = array( |
||
52 | '' => '€', |
||
53 | '' => '‚', |
||
54 | '' => 'ƒ', |
||
55 | '' => '„', |
||
56 | ' ' => '…', |
||
57 | '' => '†', |
||
58 | '' => '‡', |
||
59 | '' => 'ˆ', |
||
60 | '' => '‰', |
||
61 | '' => 'Š', |
||
62 | '' => '‹', |
||
63 | '' => 'Œ', |
||
64 | '' => 'Ž', |
||
65 | '' => '‘', |
||
66 | '' => '’', |
||
67 | '' => '“', |
||
68 | '' => '”', |
||
69 | '' => '•', |
||
70 | '' => '–', |
||
71 | '' => '—', |
||
72 | '' => '˜', |
||
73 | '' => '™', |
||
74 | '' => 'š', |
||
75 | '' => '›', |
||
76 | '' => 'œ', |
||
77 | '' => 'ž', |
||
78 | '' => 'Ÿ', |
||
79 | ); |
||
80 | |||
81 | /** |
||
82 | * Numeric code point => UTF-8 Character |
||
83 | * |
||
84 | * url: http://www.w3schools.com/charsets/ref_utf_punctuation.asp |
||
85 | * |
||
86 | * @var array |
||
87 | */ |
||
88 | protected static $whitespace = array( |
||
89 | // NUL Byte |
||
90 | 0 => "\x0", |
||
91 | // Tab |
||
92 | 9 => "\x9", |
||
93 | // New Line |
||
94 | 10 => "\xa", |
||
95 | // Vertical Tab |
||
96 | 11 => "\xb", |
||
97 | // Carriage Return |
||
98 | 13 => "\xd", |
||
99 | // Ordinary Space |
||
100 | 32 => "\x20", |
||
101 | // NO-BREAK SPACE |
||
102 | 160 => "\xc2\xa0", |
||
103 | // OGHAM SPACE MARK |
||
104 | 5760 => "\xe1\x9a\x80", |
||
105 | // MONGOLIAN VOWEL SEPARATOR |
||
106 | 6158 => "\xe1\xa0\x8e", |
||
107 | // EN QUAD |
||
108 | 8192 => "\xe2\x80\x80", |
||
109 | // EM QUAD |
||
110 | 8193 => "\xe2\x80\x81", |
||
111 | // EN SPACE |
||
112 | 8194 => "\xe2\x80\x82", |
||
113 | // EM SPACE |
||
114 | 8195 => "\xe2\x80\x83", |
||
115 | // THREE-PER-EM SPACE |
||
116 | 8196 => "\xe2\x80\x84", |
||
117 | // FOUR-PER-EM SPACE |
||
118 | 8197 => "\xe2\x80\x85", |
||
119 | // SIX-PER-EM SPACE |
||
120 | 8198 => "\xe2\x80\x86", |
||
121 | // FIGURE SPACE |
||
122 | 8199 => "\xe2\x80\x87", |
||
123 | // PUNCTUATION SPACE |
||
124 | 8200 => "\xe2\x80\x88", |
||
125 | // THIN SPACE |
||
126 | 8201 => "\xe2\x80\x89", |
||
127 | //HAIR SPACE |
||
128 | 8202 => "\xe2\x80\x8a", |
||
129 | // LINE SEPARATOR |
||
130 | 8232 => "\xe2\x80\xa8", |
||
131 | // PARAGRAPH SEPARATOR |
||
132 | 8233 => "\xe2\x80\xa9", |
||
133 | // NARROW NO-BREAK SPACE |
||
134 | 8239 => "\xe2\x80\xaf", |
||
135 | // MEDIUM MATHEMATICAL SPACE |
||
136 | 8287 => "\xe2\x81\x9f", |
||
137 | // IDEOGRAPHIC SPACE |
||
138 | 12288 => "\xe3\x80\x80", |
||
139 | ); |
||
140 | |||
141 | /** |
||
142 | * @var array |
||
143 | */ |
||
144 | protected static $whitespaceTable = array( |
||
145 | 'SPACE' => "\x20", |
||
146 | 'NO-BREAK SPACE' => "\xc2\xa0", |
||
147 | 'OGHAM SPACE MARK' => "\xe1\x9a\x80", |
||
148 | 'EN QUAD' => "\xe2\x80\x80", |
||
149 | 'EM QUAD' => "\xe2\x80\x81", |
||
150 | 'EN SPACE' => "\xe2\x80\x82", |
||
151 | 'EM SPACE' => "\xe2\x80\x83", |
||
152 | 'THREE-PER-EM SPACE' => "\xe2\x80\x84", |
||
153 | 'FOUR-PER-EM SPACE' => "\xe2\x80\x85", |
||
154 | 'SIX-PER-EM SPACE' => "\xe2\x80\x86", |
||
155 | 'FIGURE SPACE' => "\xe2\x80\x87", |
||
156 | 'PUNCTUATION SPACE' => "\xe2\x80\x88", |
||
157 | 'THIN SPACE' => "\xe2\x80\x89", |
||
158 | 'HAIR SPACE' => "\xe2\x80\x8a", |
||
159 | 'LINE SEPARATOR' => "\xe2\x80\xa8", |
||
160 | 'PARAGRAPH SEPARATOR' => "\xe2\x80\xa9", |
||
161 | 'ZERO WIDTH SPACE' => "\xe2\x80\x8b", |
||
162 | 'NARROW NO-BREAK SPACE' => "\xe2\x80\xaf", |
||
163 | 'MEDIUM MATHEMATICAL SPACE' => "\xe2\x81\x9f", |
||
164 | 'IDEOGRAPHIC SPACE' => "\xe3\x80\x80", |
||
165 | ); |
||
166 | |||
167 | /** |
||
168 | * bidirectional text chars |
||
169 | * |
||
170 | * url: https://www.w3.org/International/questions/qa-bidi-unicode-controls |
||
171 | * |
||
172 | * @var array |
||
173 | */ |
||
174 | protected static $bidiUniCodeControlsTable = array( |
||
175 | // LEFT-TO-RIGHT EMBEDDING (use -> dir = "ltr") |
||
176 | 8234 => "\xE2\x80\xAA", |
||
177 | // RIGHT-TO-LEFT EMBEDDING (use -> dir = "rtl") |
||
178 | 8235 => "\xE2\x80\xAB", |
||
179 | // POP DIRECTIONAL FORMATTING // (use -> </bdo>) |
||
180 | 8236 => "\xE2\x80\xAC", |
||
181 | // LEFT-TO-RIGHT OVERRIDE // (use -> <bdo dir = "ltr">) |
||
182 | 8237 => "\xE2\x80\xAD", |
||
183 | // RIGHT-TO-LEFT OVERRIDE // (use -> <bdo dir = "rtl">) |
||
184 | 8238 => "\xE2\x80\xAE", |
||
185 | // LEFT-TO-RIGHT ISOLATE // (use -> dir = "ltr") |
||
186 | 8294 => "\xE2\x81\xA6", |
||
187 | // RIGHT-TO-LEFT ISOLATE // (use -> dir = "rtl") |
||
188 | 8295 => "\xE2\x81\xA7", |
||
189 | // FIRST STRONG ISOLATE // (use -> dir = "auto") |
||
190 | 8296 => "\xE2\x81\xA8", |
||
191 | // POP DIRECTIONAL ISOLATE |
||
192 | 8297 => "\xE2\x81\xA9", |
||
193 | ); |
||
194 | |||
195 | /** |
||
196 | * @var array |
||
197 | */ |
||
198 | protected static $commonCaseFold = array( |
||
199 | 'ſ' => 's', |
||
200 | "\xCD\x85" => 'ι', |
||
201 | 'ς' => 'σ', |
||
202 | "\xCF\x90" => 'β', |
||
203 | "\xCF\x91" => 'θ', |
||
204 | "\xCF\x95" => 'φ', |
||
205 | "\xCF\x96" => 'π', |
||
206 | "\xCF\xB0" => 'κ', |
||
207 | "\xCF\xB1" => 'ρ', |
||
208 | "\xCF\xB5" => 'ε', |
||
209 | "\xE1\xBA\x9B" => "\xE1\xB9\xA1", |
||
210 | "\xE1\xBE\xBE" => 'ι', |
||
211 | ); |
||
212 | |||
213 | /** |
||
214 | * @var array |
||
215 | */ |
||
216 | protected static $brokenUtf8ToUtf8 = array( |
||
217 | "\xc2\x80" => "\xe2\x82\xac", // EURO SIGN |
||
218 | "\xc2\x82" => "\xe2\x80\x9a", // SINGLE LOW-9 QUOTATION MARK |
||
219 | "\xc2\x83" => "\xc6\x92", // LATIN SMALL LETTER F WITH HOOK |
||
220 | "\xc2\x84" => "\xe2\x80\x9e", // DOUBLE LOW-9 QUOTATION MARK |
||
221 | "\xc2\x85" => "\xe2\x80\xa6", // HORIZONTAL ELLIPSIS |
||
222 | "\xc2\x86" => "\xe2\x80\xa0", // DAGGER |
||
223 | "\xc2\x87" => "\xe2\x80\xa1", // DOUBLE DAGGER |
||
224 | "\xc2\x88" => "\xcb\x86", // MODIFIER LETTER CIRCUMFLEX ACCENT |
||
225 | "\xc2\x89" => "\xe2\x80\xb0", // PER MILLE SIGN |
||
226 | "\xc2\x8a" => "\xc5\xa0", // LATIN CAPITAL LETTER S WITH CARON |
||
227 | "\xc2\x8b" => "\xe2\x80\xb9", // SINGLE LEFT-POINTING ANGLE QUOTE |
||
228 | "\xc2\x8c" => "\xc5\x92", // LATIN CAPITAL LIGATURE OE |
||
229 | "\xc2\x8e" => "\xc5\xbd", // LATIN CAPITAL LETTER Z WITH CARON |
||
230 | "\xc2\x91" => "\xe2\x80\x98", // LEFT SINGLE QUOTATION MARK |
||
231 | "\xc2\x92" => "\xe2\x80\x99", // RIGHT SINGLE QUOTATION MARK |
||
232 | "\xc2\x93" => "\xe2\x80\x9c", // LEFT DOUBLE QUOTATION MARK |
||
233 | "\xc2\x94" => "\xe2\x80\x9d", // RIGHT DOUBLE QUOTATION MARK |
||
234 | "\xc2\x95" => "\xe2\x80\xa2", // BULLET |
||
235 | "\xc2\x96" => "\xe2\x80\x93", // EN DASH |
||
236 | "\xc2\x97" => "\xe2\x80\x94", // EM DASH |
||
237 | "\xc2\x98" => "\xcb\x9c", // SMALL TILDE |
||
238 | "\xc2\x99" => "\xe2\x84\xa2", // TRADE MARK SIGN |
||
239 | "\xc2\x9a" => "\xc5\xa1", // LATIN SMALL LETTER S WITH CARON |
||
240 | "\xc2\x9b" => "\xe2\x80\xba", // SINGLE RIGHT-POINTING ANGLE QUOTE |
||
241 | "\xc2\x9c" => "\xc5\x93", // LATIN SMALL LIGATURE OE |
||
242 | "\xc2\x9e" => "\xc5\xbe", // LATIN SMALL LETTER Z WITH CARON |
||
243 | "\xc2\x9f" => "\xc5\xb8", // LATIN CAPITAL LETTER Y WITH DIAERESIS |
||
244 | 'ü' => 'ü', |
||
245 | 'ä' => 'ä', |
||
246 | 'ö' => 'ö', |
||
247 | 'Ö' => 'Ö', |
||
248 | 'ß' => 'ß', |
||
249 | 'Ã ' => 'à', |
||
250 | 'á' => 'á', |
||
251 | 'â' => 'â', |
||
252 | 'ã' => 'ã', |
||
253 | 'ù' => 'ù', |
||
254 | 'ú' => 'ú', |
||
255 | 'û' => 'û', |
||
256 | 'Ù' => 'Ù', |
||
257 | 'Ú' => 'Ú', |
||
258 | 'Û' => 'Û', |
||
259 | 'Ü' => 'Ü', |
||
260 | 'ò' => 'ò', |
||
261 | 'ó' => 'ó', |
||
262 | 'ô' => 'ô', |
||
263 | 'è' => 'è', |
||
264 | 'é' => 'é', |
||
265 | 'ê' => 'ê', |
||
266 | 'ë' => 'ë', |
||
267 | 'À' => 'À', |
||
268 | 'Ã' => 'Á', |
||
269 | 'Â' => 'Â', |
||
270 | 'Ã' => 'Ã', |
||
271 | 'Ä' => 'Ä', |
||
272 | 'Ã…' => 'Å', |
||
273 | 'Ç' => 'Ç', |
||
274 | 'È' => 'È', |
||
275 | 'É' => 'É', |
||
276 | 'Ê' => 'Ê', |
||
277 | 'Ë' => 'Ë', |
||
278 | 'ÃŒ' => 'Ì', |
||
279 | 'Ã' => 'Í', |
||
280 | 'ÃŽ' => 'Î', |
||
281 | 'Ã' => 'Ï', |
||
282 | 'Ñ' => 'Ñ', |
||
283 | 'Ã’' => 'Ò', |
||
284 | 'Ó' => 'Ó', |
||
285 | 'Ô' => 'Ô', |
||
286 | 'Õ' => 'Õ', |
||
287 | 'Ø' => 'Ø', |
||
288 | 'Ã¥' => 'å', |
||
289 | 'æ' => 'æ', |
||
290 | 'ç' => 'ç', |
||
291 | 'ì' => 'ì', |
||
292 | 'Ã' => 'í', |
||
293 | 'î' => 'î', |
||
294 | 'ï' => 'ï', |
||
295 | 'ð' => 'ð', |
||
296 | 'ñ' => 'ñ', |
||
297 | 'õ' => 'õ', |
||
298 | 'ø' => 'ø', |
||
299 | 'ý' => 'ý', |
||
300 | 'ÿ' => 'ÿ', |
||
301 | '€' => '€', |
||
302 | ); |
||
303 | |||
304 | /** |
||
305 | * @var array |
||
306 | */ |
||
307 | protected static $utf8ToWin1252 = array( |
||
308 | "\xe2\x82\xac" => "\x80", // EURO SIGN |
||
309 | "\xe2\x80\x9a" => "\x82", // SINGLE LOW-9 QUOTATION MARK |
||
310 | "\xc6\x92" => "\x83", // LATIN SMALL LETTER F WITH HOOK |
||
311 | "\xe2\x80\x9e" => "\x84", // DOUBLE LOW-9 QUOTATION MARK |
||
312 | "\xe2\x80\xa6" => "\x85", // HORIZONTAL ELLIPSIS |
||
313 | "\xe2\x80\xa0" => "\x86", // DAGGER |
||
314 | "\xe2\x80\xa1" => "\x87", // DOUBLE DAGGER |
||
315 | "\xcb\x86" => "\x88", // MODIFIER LETTER CIRCUMFLEX ACCENT |
||
316 | "\xe2\x80\xb0" => "\x89", // PER MILLE SIGN |
||
317 | "\xc5\xa0" => "\x8a", // LATIN CAPITAL LETTER S WITH CARON |
||
318 | "\xe2\x80\xb9" => "\x8b", // SINGLE LEFT-POINTING ANGLE QUOTE |
||
319 | "\xc5\x92" => "\x8c", // LATIN CAPITAL LIGATURE OE |
||
320 | "\xc5\xbd" => "\x8e", // LATIN CAPITAL LETTER Z WITH CARON |
||
321 | "\xe2\x80\x98" => "\x91", // LEFT SINGLE QUOTATION MARK |
||
322 | "\xe2\x80\x99" => "\x92", // RIGHT SINGLE QUOTATION MARK |
||
323 | "\xe2\x80\x9c" => "\x93", // LEFT DOUBLE QUOTATION MARK |
||
324 | "\xe2\x80\x9d" => "\x94", // RIGHT DOUBLE QUOTATION MARK |
||
325 | "\xe2\x80\xa2" => "\x95", // BULLET |
||
326 | "\xe2\x80\x93" => "\x96", // EN DASH |
||
327 | "\xe2\x80\x94" => "\x97", // EM DASH |
||
328 | "\xcb\x9c" => "\x98", // SMALL TILDE |
||
329 | "\xe2\x84\xa2" => "\x99", // TRADE MARK SIGN |
||
330 | "\xc5\xa1" => "\x9a", // LATIN SMALL LETTER S WITH CARON |
||
331 | "\xe2\x80\xba" => "\x9b", // SINGLE RIGHT-POINTING ANGLE QUOTE |
||
332 | "\xc5\x93" => "\x9c", // LATIN SMALL LIGATURE OE |
||
333 | "\xc5\xbe" => "\x9e", // LATIN SMALL LETTER Z WITH CARON |
||
334 | "\xc5\xb8" => "\x9f", // LATIN CAPITAL LETTER Y WITH DIAERESIS |
||
335 | ); |
||
336 | |||
337 | /** |
||
338 | * @var array |
||
339 | */ |
||
340 | protected static $utf8MSWord = array( |
||
341 | "\xc2\xab" => '"', // « (U+00AB) in UTF-8 |
||
342 | "\xc2\xbb" => '"', // » (U+00BB) in UTF-8 |
||
343 | "\xe2\x80\x98" => "'", // ‘ (U+2018) in UTF-8 |
||
344 | "\xe2\x80\x99" => "'", // ’ (U+2019) in UTF-8 |
||
345 | "\xe2\x80\x9a" => "'", // ‚ (U+201A) in UTF-8 |
||
346 | "\xe2\x80\x9b" => "'", // ‛ (U+201B) in UTF-8 |
||
347 | "\xe2\x80\x9c" => '"', // “ (U+201C) in UTF-8 |
||
348 | "\xe2\x80\x9d" => '"', // ” (U+201D) in UTF-8 |
||
349 | "\xe2\x80\x9e" => '"', // „ (U+201E) in UTF-8 |
||
350 | "\xe2\x80\x9f" => '"', // ‟ (U+201F) in UTF-8 |
||
351 | "\xe2\x80\xb9" => "'", // ‹ (U+2039) in UTF-8 |
||
352 | "\xe2\x80\xba" => "'", // › (U+203A) in UTF-8 |
||
353 | "\xe2\x80\x93" => '-', // – (U+2013) in UTF-8 |
||
354 | "\xe2\x80\x94" => '-', // — (U+2014) in UTF-8 |
||
355 | "\xe2\x80\xa6" => '...' // … (U+2026) in UTF-8 |
||
356 | ); |
||
357 | |||
358 | protected static $iconvEncoding = array( |
||
359 | 'ANSI_X3.4-1968', |
||
360 | 'ANSI_X3.4-1986', |
||
361 | 'ASCII', |
||
362 | 'CP367', |
||
363 | 'IBM367', |
||
364 | 'ISO-IR-6', |
||
365 | 'ISO646-US', |
||
366 | 'ISO_646.IRV:1991', |
||
367 | 'US', |
||
368 | 'US-ASCII', |
||
369 | 'CSASCII', |
||
370 | 'UTF-8', |
||
371 | 'ISO-10646-UCS-2', |
||
372 | 'UCS-2', |
||
373 | 'CSUNICODE', |
||
374 | 'UCS-2BE', |
||
375 | 'UNICODE-1-1', |
||
376 | 'UNICODEBIG', |
||
377 | 'CSUNICODE11', |
||
378 | 'UCS-2LE', |
||
379 | 'UNICODELITTLE', |
||
380 | 'ISO-10646-UCS-4', |
||
381 | 'UCS-4', |
||
382 | 'CSUCS4', |
||
383 | 'UCS-4BE', |
||
384 | 'UCS-4LE', |
||
385 | 'UTF-16', |
||
386 | 'UTF-16BE', |
||
387 | 'UTF-16LE', |
||
388 | 'UTF-32', |
||
389 | 'UTF-32BE', |
||
390 | 'UTF-32LE', |
||
391 | 'UNICODE-1-1-UTF-7', |
||
392 | 'UTF-7', |
||
393 | 'CSUNICODE11UTF7', |
||
394 | 'UCS-2-INTERNAL', |
||
395 | 'UCS-2-SWAPPED', |
||
396 | 'UCS-4-INTERNAL', |
||
397 | 'UCS-4-SWAPPED', |
||
398 | 'C99', |
||
399 | 'JAVA', |
||
400 | 'CP819', |
||
401 | 'IBM819', |
||
402 | 'ISO-8859-1', |
||
403 | 'ISO-IR-100', |
||
404 | 'ISO8859-1', |
||
405 | 'ISO_8859-1', |
||
406 | 'ISO_8859-1:1987', |
||
407 | 'L1', |
||
408 | 'LATIN1', |
||
409 | 'CSISOLATIN1', |
||
410 | 'ISO-8859-2', |
||
411 | 'ISO-IR-101', |
||
412 | 'ISO8859-2', |
||
413 | 'ISO_8859-2', |
||
414 | 'ISO_8859-2:1987', |
||
415 | 'L2', |
||
416 | 'LATIN2', |
||
417 | 'CSISOLATIN2', |
||
418 | 'ISO-8859-3', |
||
419 | 'ISO-IR-109', |
||
420 | 'ISO8859-3', |
||
421 | 'ISO_8859-3', |
||
422 | 'ISO_8859-3:1988', |
||
423 | 'L3', |
||
424 | 'LATIN3', |
||
425 | 'CSISOLATIN3', |
||
426 | 'ISO-8859-4', |
||
427 | 'ISO-IR-110', |
||
428 | 'ISO8859-4', |
||
429 | 'ISO_8859-4', |
||
430 | 'ISO_8859-4:1988', |
||
431 | 'L4', |
||
432 | 'LATIN4', |
||
433 | 'CSISOLATIN4', |
||
434 | 'CYRILLIC', |
||
435 | 'ISO-8859-5', |
||
436 | 'ISO-IR-144', |
||
437 | 'ISO8859-5', |
||
438 | 'ISO_8859-5', |
||
439 | 'ISO_8859-5:1988', |
||
440 | 'CSISOLATINCYRILLIC', |
||
441 | 'ARABIC', |
||
442 | 'ASMO-708', |
||
443 | 'ECMA-114', |
||
444 | 'ISO-8859-6', |
||
445 | 'ISO-IR-127', |
||
446 | 'ISO8859-6', |
||
447 | 'ISO_8859-6', |
||
448 | 'ISO_8859-6:1987', |
||
449 | 'CSISOLATINARABIC', |
||
450 | 'ECMA-118', |
||
451 | 'ELOT_928', |
||
452 | 'GREEK', |
||
453 | 'GREEK8', |
||
454 | 'ISO-8859-7', |
||
455 | 'ISO-IR-126', |
||
456 | 'ISO8859-7', |
||
457 | 'ISO_8859-7', |
||
458 | 'ISO_8859-7:1987', |
||
459 | 'ISO_8859-7:2003', |
||
460 | 'CSISOLATINGREEK', |
||
461 | 'HEBREW', |
||
462 | 'ISO-8859-8', |
||
463 | 'ISO-IR-138', |
||
464 | 'ISO8859-8', |
||
465 | 'ISO_8859-8', |
||
466 | 'ISO_8859-8:1988', |
||
467 | 'CSISOLATINHEBREW', |
||
468 | 'ISO-8859-9', |
||
469 | 'ISO-IR-148', |
||
470 | 'ISO8859-9', |
||
471 | 'ISO_8859-9', |
||
472 | 'ISO_8859-9:1989', |
||
473 | 'L5', |
||
474 | 'LATIN5', |
||
475 | 'CSISOLATIN5', |
||
476 | 'ISO-8859-10', |
||
477 | 'ISO-IR-157', |
||
478 | 'ISO8859-10', |
||
479 | 'ISO_8859-10', |
||
480 | 'ISO_8859-10:1992', |
||
481 | 'L6', |
||
482 | 'LATIN6', |
||
483 | 'CSISOLATIN6', |
||
484 | 'ISO-8859-11', |
||
485 | 'ISO8859-11', |
||
486 | 'ISO_8859-11', |
||
487 | 'ISO-8859-13', |
||
488 | 'ISO-IR-179', |
||
489 | 'ISO8859-13', |
||
490 | 'ISO_8859-13', |
||
491 | 'L7', |
||
492 | 'LATIN7', |
||
493 | 'ISO-8859-14', |
||
494 | 'ISO-CELTIC', |
||
495 | 'ISO-IR-199', |
||
496 | 'ISO8859-14', |
||
497 | 'ISO_8859-14', |
||
498 | 'ISO_8859-14:1998', |
||
499 | 'L8', |
||
500 | 'LATIN8', |
||
501 | 'ISO-8859-15', |
||
502 | 'ISO-IR-203', |
||
503 | 'ISO8859-15', |
||
504 | 'ISO_8859-15', |
||
505 | 'ISO_8859-15:1998', |
||
506 | 'LATIN-9', |
||
507 | 'ISO-8859-16', |
||
508 | 'ISO-IR-226', |
||
509 | 'ISO8859-16', |
||
510 | 'ISO_8859-16', |
||
511 | 'ISO_8859-16:2001', |
||
512 | 'L10', |
||
513 | 'LATIN10', |
||
514 | 'KOI8-R', |
||
515 | 'CSKOI8R', |
||
516 | 'KOI8-U', |
||
517 | 'KOI8-RU', |
||
518 | 'CP1250', |
||
519 | 'MS-EE', |
||
520 | 'WINDOWS-1250', |
||
521 | 'CP1251', |
||
522 | 'MS-CYRL', |
||
523 | 'WINDOWS-1251', |
||
524 | 'CP1252', |
||
525 | 'MS-ANSI', |
||
526 | 'WINDOWS-1252', |
||
527 | 'CP1253', |
||
528 | 'MS-GREEK', |
||
529 | 'WINDOWS-1253', |
||
530 | 'CP1254', |
||
531 | 'MS-TURK', |
||
532 | 'WINDOWS-1254', |
||
533 | 'CP1255', |
||
534 | 'MS-HEBR', |
||
535 | 'WINDOWS-1255', |
||
536 | 'CP1256', |
||
537 | 'MS-ARAB', |
||
538 | 'WINDOWS-1256', |
||
539 | 'CP1257', |
||
540 | 'WINBALTRIM', |
||
541 | 'WINDOWS-1257', |
||
542 | 'CP1258', |
||
543 | 'WINDOWS-1258', |
||
544 | '850', |
||
545 | 'CP850', |
||
546 | 'IBM850', |
||
547 | 'CSPC850MULTILINGUAL', |
||
548 | '862', |
||
549 | 'CP862', |
||
550 | 'IBM862', |
||
551 | 'CSPC862LATINHEBREW', |
||
552 | '866', |
||
553 | 'CP866', |
||
554 | 'IBM866', |
||
555 | 'CSIBM866', |
||
556 | 'MAC', |
||
557 | 'MACINTOSH', |
||
558 | 'MACROMAN', |
||
559 | 'CSMACINTOSH', |
||
560 | 'MACCENTRALEUROPE', |
||
561 | 'MACICELAND', |
||
562 | 'MACCROATIAN', |
||
563 | 'MACROMANIA', |
||
564 | 'MACCYRILLIC', |
||
565 | 'MACUKRAINE', |
||
566 | 'MACGREEK', |
||
567 | 'MACTURKISH', |
||
568 | 'MACHEBREW', |
||
569 | 'MACARABIC', |
||
570 | 'MACTHAI', |
||
571 | 'HP-ROMAN8', |
||
572 | 'R8', |
||
573 | 'ROMAN8', |
||
574 | 'CSHPROMAN8', |
||
575 | 'NEXTSTEP', |
||
576 | 'ARMSCII-8', |
||
577 | 'GEORGIAN-ACADEMY', |
||
578 | 'GEORGIAN-PS', |
||
579 | 'KOI8-T', |
||
580 | 'CP154', |
||
581 | 'CYRILLIC-ASIAN', |
||
582 | 'PT154', |
||
583 | 'PTCP154', |
||
584 | 'CSPTCP154', |
||
585 | 'KZ-1048', |
||
586 | 'RK1048', |
||
587 | 'STRK1048-2002', |
||
588 | 'CSKZ1048', |
||
589 | 'MULELAO-1', |
||
590 | 'CP1133', |
||
591 | 'IBM-CP1133', |
||
592 | 'ISO-IR-166', |
||
593 | 'TIS-620', |
||
594 | 'TIS620', |
||
595 | 'TIS620-0', |
||
596 | 'TIS620.2529-1', |
||
597 | 'TIS620.2533-0', |
||
598 | 'TIS620.2533-1', |
||
599 | 'CP874', |
||
600 | 'WINDOWS-874', |
||
601 | 'VISCII', |
||
602 | 'VISCII1.1-1', |
||
603 | 'CSVISCII', |
||
604 | 'TCVN', |
||
605 | 'TCVN-5712', |
||
606 | 'TCVN5712-1', |
||
607 | 'TCVN5712-1:1993', |
||
608 | 'ISO-IR-14', |
||
609 | 'ISO646-JP', |
||
610 | 'JIS_C6220-1969-RO', |
||
611 | 'JP', |
||
612 | 'CSISO14JISC6220RO', |
||
613 | 'JISX0201-1976', |
||
614 | 'JIS_X0201', |
||
615 | 'X0201', |
||
616 | 'CSHALFWIDTHKATAKANA', |
||
617 | 'ISO-IR-87', |
||
618 | 'JIS0208', |
||
619 | 'JIS_C6226-1983', |
||
620 | 'JIS_X0208', |
||
621 | 'JIS_X0208-1983', |
||
622 | 'JIS_X0208-1990', |
||
623 | 'X0208', |
||
624 | 'CSISO87JISX0208', |
||
625 | 'ISO-IR-159', |
||
626 | 'JIS_X0212', |
||
627 | 'JIS_X0212-1990', |
||
628 | 'JIS_X0212.1990-0', |
||
629 | 'X0212', |
||
630 | 'CSISO159JISX02121990', |
||
631 | 'CN', |
||
632 | 'GB_1988-80', |
||
633 | 'ISO-IR-57', |
||
634 | 'ISO646-CN', |
||
635 | 'CSISO57GB1988', |
||
636 | 'CHINESE', |
||
637 | 'GB_2312-80', |
||
638 | 'ISO-IR-58', |
||
639 | 'CSISO58GB231280', |
||
640 | 'CN-GB-ISOIR165', |
||
641 | 'ISO-IR-165', |
||
642 | 'ISO-IR-149', |
||
643 | 'KOREAN', |
||
644 | 'KSC_5601', |
||
645 | 'KS_C_5601-1987', |
||
646 | 'KS_C_5601-1989', |
||
647 | 'CSKSC56011987', |
||
648 | 'EUC-JP', |
||
649 | 'EUCJP', |
||
650 | 'EXTENDED_UNIX_CODE_PACKED_FORMAT_FOR_JAPANESE', |
||
651 | 'CSEUCPKDFMTJAPANESE', |
||
652 | 'MS_KANJI', |
||
653 | 'SHIFT-JIS', |
||
654 | 'SHIFT_JIS', |
||
655 | 'SJIS', |
||
656 | 'CSSHIFTJIS', |
||
657 | 'CP932', |
||
658 | 'ISO-2022-JP', |
||
659 | 'CSISO2022JP', |
||
660 | 'ISO-2022-JP-1', |
||
661 | 'ISO-2022-JP-2', |
||
662 | 'CSISO2022JP2', |
||
663 | 'CN-GB', |
||
664 | 'EUC-CN', |
||
665 | 'EUCCN', |
||
666 | 'GB2312', |
||
667 | 'CSGB2312', |
||
668 | 'GBK', |
||
669 | 'CP936', |
||
670 | 'MS936', |
||
671 | 'WINDOWS-936', |
||
672 | 'GB18030', |
||
673 | 'ISO-2022-CN', |
||
674 | 'CSISO2022CN', |
||
675 | 'ISO-2022-CN-EXT', |
||
676 | 'HZ', |
||
677 | 'HZ-GB-2312', |
||
678 | 'EUC-TW', |
||
679 | 'EUCTW', |
||
680 | 'CSEUCTW', |
||
681 | 'BIG-5', |
||
682 | 'BIG-FIVE', |
||
683 | 'BIG5', |
||
684 | 'BIGFIVE', |
||
685 | 'CN-BIG5', |
||
686 | 'CSBIG5', |
||
687 | 'CP950', |
||
688 | 'BIG5-HKSCS:1999', |
||
689 | 'BIG5-HKSCS:2001', |
||
690 | 'BIG5-HKSCS', |
||
691 | 'BIG5-HKSCS:2004', |
||
692 | 'BIG5HKSCS', |
||
693 | 'EUC-KR', |
||
694 | 'EUCKR', |
||
695 | 'CSEUCKR', |
||
696 | 'CP949', |
||
697 | 'UHC', |
||
698 | 'CP1361', |
||
699 | 'JOHAB', |
||
700 | 'ISO-2022-KR', |
||
701 | 'CSISO2022KR', |
||
702 | 'CP856', |
||
703 | 'CP922', |
||
704 | 'CP943', |
||
705 | 'CP1046', |
||
706 | 'CP1124', |
||
707 | 'CP1129', |
||
708 | 'CP1161', |
||
709 | 'IBM-1161', |
||
710 | 'IBM1161', |
||
711 | 'CSIBM1161', |
||
712 | 'CP1162', |
||
713 | 'IBM-1162', |
||
714 | 'IBM1162', |
||
715 | 'CSIBM1162', |
||
716 | 'CP1163', |
||
717 | 'IBM-1163', |
||
718 | 'IBM1163', |
||
719 | 'CSIBM1163', |
||
720 | 'DEC-KANJI', |
||
721 | 'DEC-HANYU', |
||
722 | '437', |
||
723 | 'CP437', |
||
724 | 'IBM437', |
||
725 | 'CSPC8CODEPAGE437', |
||
726 | 'CP737', |
||
727 | 'CP775', |
||
728 | 'IBM775', |
||
729 | 'CSPC775BALTIC', |
||
730 | '852', |
||
731 | 'CP852', |
||
732 | 'IBM852', |
||
733 | 'CSPCP852', |
||
734 | 'CP853', |
||
735 | '855', |
||
736 | 'CP855', |
||
737 | 'IBM855', |
||
738 | 'CSIBM855', |
||
739 | '857', |
||
740 | 'CP857', |
||
741 | 'IBM857', |
||
742 | 'CSIBM857', |
||
743 | 'CP858', |
||
744 | '860', |
||
745 | 'CP860', |
||
746 | 'IBM860', |
||
747 | 'CSIBM860', |
||
748 | '861', |
||
749 | 'CP-IS', |
||
750 | 'CP861', |
||
751 | 'IBM861', |
||
752 | 'CSIBM861', |
||
753 | '863', |
||
754 | 'CP863', |
||
755 | 'IBM863', |
||
756 | 'CSIBM863', |
||
757 | 'CP864', |
||
758 | 'IBM864', |
||
759 | 'CSIBM864', |
||
760 | '865', |
||
761 | 'CP865', |
||
762 | 'IBM865', |
||
763 | 'CSIBM865', |
||
764 | '869', |
||
765 | 'CP-GR', |
||
766 | 'CP869', |
||
767 | 'IBM869', |
||
768 | 'CSIBM869', |
||
769 | 'CP1125', |
||
770 | 'EUC-JISX0213', |
||
771 | 'SHIFT_JISX0213', |
||
772 | 'ISO-2022-JP-3', |
||
773 | 'BIG5-2003', |
||
774 | 'ISO-IR-230', |
||
775 | 'TDS565', |
||
776 | 'ATARI', |
||
777 | 'ATARIST', |
||
778 | 'RISCOS-LATIN1', |
||
779 | ); |
||
780 | |||
781 | /** |
||
782 | * @var array |
||
783 | */ |
||
784 | private static $support = array(); |
||
785 | |||
786 | /** |
||
787 | * __construct() |
||
788 | */ |
||
789 | public function __construct() |
||
793 | 1 | ||
794 | /** |
||
795 | * Returns a single UTF-8 character from string. |
||
796 | * |
||
797 | * @param string $str A UTF-8 string. |
||
798 | * @param int $pos The position of character to return. |
||
799 | * |
||
800 | * @return string Single Multi-Byte character. |
||
801 | */ |
||
802 | public static function access($str, $pos) |
||
808 | |||
809 | /** |
||
810 | * Prepends BOM character to the string and returns the whole string. |
||
811 | * |
||
812 | * INFO: If BOM already existed there, the Input string is returned. |
||
813 | * |
||
814 | * @param string $str The input string |
||
815 | * |
||
816 | * @return string The output string that contains BOM |
||
817 | */ |
||
818 | public static function add_bom_to_string($str) |
||
826 | |||
827 | /** |
||
828 | * Returns the Byte Order Mark Character. |
||
829 | * |
||
830 | * @return string Byte Order Mark |
||
831 | */ |
||
832 | public static function bom() |
||
836 | |||
837 | /** |
||
838 | * @alias of UTF8::chr_map() |
||
839 | * |
||
840 | * @param $callback |
||
841 | * @param $str |
||
842 | * |
||
843 | * @return array |
||
844 | */ |
||
845 | public static function callback($callback, $str) |
||
849 | |||
850 | /** |
||
851 | * Returns an array of all lower and upper case UTF-8 encoded characters. |
||
852 | * |
||
853 | * @return string An array with lower case chars as keys and upper chars as values. |
||
854 | */ |
||
855 | protected static function case_table() |
||
1856 | |||
1857 | /** |
||
1858 | * check for UTF8-Support |
||
1859 | */ |
||
1860 | public static function checkForSupport() |
||
1871 | |||
1872 | /** |
||
1873 | * Generates a UTF-8 encoded character from the given code point. |
||
1874 | * |
||
1875 | * @param int $code_point The code point for which to generate a character. |
||
1876 | * |
||
1877 | * @return string Multi-Byte character, returns empty string on failure to encode. |
||
1878 | */ |
||
1879 | 8 | public static function chr($code_point) |
|
1899 | |||
1900 | /** |
||
1901 | * Applies callback to all characters of a string. |
||
1902 | 1 | * |
|
1903 | * @param string $callback The callback function. |
||
1904 | 1 | * @param string $str UTF-8 string to run callback on. |
|
1905 | * |
||
1906 | 1 | * @return array The outcome of callback. |
|
1907 | */ |
||
1908 | |||
1909 | public static function chr_map($callback, $str) |
||
1915 | |||
1916 | /** |
||
1917 | * Generates an array of byte length of each character of a Unicode string. |
||
1918 | * |
||
1919 | * 1 byte => U+0000 - U+007F |
||
1920 | * 2 byte => U+0080 - U+07FF |
||
1921 | 2 | * 3 byte => U+0800 - U+FFFF |
|
1922 | * 4 byte => U+10000 - U+10FFFF |
||
1923 | 2 | * |
|
1924 | 2 | * @param string $str The original Unicode string. |
|
1925 | * |
||
1926 | * @return array An array of byte lengths of each character. |
||
1927 | 2 | */ |
|
1928 | public static function chr_size_list($str) |
||
1936 | |||
1937 | 2 | /** |
|
1938 | * Get a decimal code representation of a specific character. |
||
1939 | 2 | * |
|
1940 | 2 | * @param string $chr The input character |
|
1941 | 2 | * |
|
1942 | * @return int |
||
1943 | 2 | */ |
|
1944 | public static function chr_to_decimal($chr) |
||
1976 | |||
1977 | /** |
||
1978 | * Get hexadecimal code point (U+xxxx) of a UTF-8 encoded character. |
||
1979 | * |
||
1980 | * @param string $chr The input character |
||
1981 | * @param string $pfix |
||
1982 | * |
||
1983 | * @return string The code point encoded as U+xxxx |
||
1984 | */ |
||
1985 | public static function chr_to_hex($chr, $pfix = 'U+') |
||
1989 | |||
1990 | /** |
||
1991 | * Splits a string into smaller chunks and multiple lines, using the specified |
||
1992 | * line ending character. |
||
1993 | 1 | * |
|
1994 | * @param string $body The original string to be split. |
||
1995 | 1 | * @param int $chunklen The maximum character length of a chunk. |
|
1996 | * @param string $end The character(s) to be inserted at the end of each chunk. |
||
1997 | * |
||
1998 | * @return string The chunked string |
||
1999 | */ |
||
2000 | public static function chunk_split($body, $chunklen = 76, $end = "\r\n") |
||
2004 | |||
2005 | /** |
||
2006 | * accepts a string and removes all non-UTF-8 characters from it. |
||
2007 | * |
||
2008 | * @param string $str The string to be sanitized. |
||
2009 | 35 | * @param bool $remove_bom |
|
2010 | * @param bool $normalize_whitespace |
||
2011 | * @param bool $normalize_msword e.g.: "…" => "..." |
||
2012 | * @param bool $keep_non_breaking_space set true, to keep non-breaking-spaces |
||
2013 | * |
||
2014 | * @return string Clean UTF-8 encoded string |
||
2015 | */ |
||
2016 | public static function clean($str, $remove_bom = false, $normalize_whitespace = false, $normalize_msword = false, $keep_non_breaking_space = false) |
||
2051 | |||
2052 | 3 | /** |
|
2053 | * Clean-up a and show only printable UTF-8 chars at the end. |
||
2054 | 3 | * |
|
2055 | * @param string $str |
||
2056 | 3 | * |
|
2057 | 1 | * @return string |
|
2058 | */ |
||
2059 | public static function cleanup($str) |
||
2079 | |||
2080 | /** |
||
2081 | * Accepts a string and returns an array of Unicode code points. |
||
2082 | 3 | * |
|
2083 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
||
2084 | 3 | * @param bool $u_style If True, will return code points in U+xxxx format, |
|
2085 | 3 | * default, code points will be returned as integers. |
|
2086 | 3 | * |
|
2087 | * @return array The array of code points |
||
2088 | 3 | */ |
|
2089 | public static function codepoints($arg, $u_style = false) |
||
2115 | |||
2116 | /** |
||
2117 | 3 | * Returns count of characters used in a string. |
|
2118 | * |
||
2119 | 3 | * @param string $str The input string. |
|
2120 | * |
||
2121 | 3 | * @return array An associative array of Character as keys and |
|
2122 | * their count as values. |
||
2123 | 3 | */ |
|
2124 | public static function count_chars($str) // there is no $mode parameters |
||
2132 | |||
2133 | 1 | /** |
|
2134 | * Get a UTF-8 character from its decimal code representation. |
||
2135 | 1 | * |
|
2136 | * @param int $code Code. |
||
2137 | 1 | * |
|
2138 | 1 | * @return string |
|
2139 | 1 | */ |
|
2140 | public static function decimal_to_chr($code) |
||
2150 | |||
2151 | /** |
||
2152 | * encode a string |
||
2153 | * |
||
2154 | * INFO: The different to "UTF8::utf8_encode()" is that this function, try to fix also broken / double encoding, |
||
2155 | 11 | * so you can call this function also on a UTF-8 String and you don't mess the string. |
|
2156 | * |
||
2157 | 11 | * @param string $encoding e.g. 'UTF-8', 'ISO-8859-1', etc. |
|
2158 | * @param string $str the string |
||
2159 | 11 | * @param bool $force force the new encoding (we try to fix broken / double encoding for UTF-8)<br /> |
|
2160 | 11 | * otherwise we auto-detect the current string-encoding |
|
2161 | * |
||
2162 | * @return string |
||
2163 | 1 | */ |
|
2164 | 1 | public static function encode($encoding, $str, $force = true) |
|
2225 | |||
2226 | /** |
||
2227 | * Callback function for preg_replace_callback use. |
||
2228 | * |
||
2229 | * @param array $matches PREG matches |
||
2230 | * |
||
2231 | * @return string |
||
2232 | */ |
||
2233 | protected static function entityCallback($matches) |
||
2245 | |||
2246 | /** |
||
2247 | * Reads entire file into a string. |
||
2248 | * |
||
2249 | * WARNING: do not use UTF-8 Option fir binary-files (e.g.: images) !!! |
||
2250 | * |
||
2251 | * @link http://php.net/manual/en/function.file-get-contents.php |
||
2252 | 2 | * |
|
2253 | * @param string $filename <p> |
||
2254 | * Name of the file to read. |
||
2255 | 2 | * </p> |
|
2256 | 2 | * @param int $flags [optional] <p> |
|
2257 | * Prior to PHP 6, this parameter is called |
||
2258 | 2 | * use_include_path and is a bool. |
|
2259 | 2 | * As of PHP 5 the FILE_USE_INCLUDE_PATH can be used |
|
2260 | * to trigger include path |
||
2261 | * search. |
||
2262 | * </p> |
||
2263 | 2 | * <p> |
|
2264 | 2 | * The value of flags can be any combination of |
|
2265 | * the following flags (with some restrictions), joined with the |
||
2266 | 2 | * binary OR (|) |
|
2267 | 2 | * operator. |
|
2268 | * </p> |
||
2269 | 2 | * <p> |
|
2270 | 1 | * <table> |
|
2271 | 1 | * Available flags |
|
2272 | 2 | * <tr valign="top"> |
|
2273 | * <td>Flag</td> |
||
2274 | * <td>Description</td> |
||
2275 | * </tr> |
||
2276 | 2 | * <tr valign="top"> |
|
2277 | * <td> |
||
2278 | * FILE_USE_INCLUDE_PATH |
||
2279 | * </td> |
||
2280 | 2 | * <td> |
|
2281 | 2 | * Search for filename in the include directory. |
|
2282 | * See include_path for more |
||
2283 | 2 | * information. |
|
2284 | * </td> |
||
2285 | 2 | * </tr> |
|
2286 | 1 | * <tr valign="top"> |
|
2287 | 1 | * <td> |
|
2288 | 1 | * FILE_TEXT |
|
2289 | 1 | * </td> |
|
2290 | 1 | * <td> |
|
2291 | 1 | * As of PHP 6, the default encoding of the read |
|
2292 | * data is UTF-8. You can specify a different encoding by creating a |
||
2293 | 2 | * custom context or by changing the default using |
|
2294 | 2 | * stream_default_encoding. This flag cannot be |
|
2295 | 2 | * used with FILE_BINARY. |
|
2296 | 2 | * </td> |
|
2297 | * </tr> |
||
2298 | * <tr valign="top"> |
||
2299 | 2 | * <td> |
|
2300 | * FILE_BINARY |
||
2301 | * </td> |
||
2302 | * <td> |
||
2303 | * With this flag, the file is read in binary mode. This is the default |
||
2304 | * setting and cannot be used with FILE_TEXT. |
||
2305 | * </td> |
||
2306 | * </tr> |
||
2307 | * </table> |
||
2308 | * </p> |
||
2309 | 1 | * @param resource $context [optional] <p> |
|
2310 | * A valid context resource created with |
||
2311 | 1 | * stream_context_create. If you don't need to use a |
|
2312 | * custom context, you can skip this parameter by &null;. |
||
2313 | * </p> |
||
2314 | * @param int $offset [optional] <p> |
||
2315 | * The offset where the reading starts. |
||
2316 | * </p> |
||
2317 | * @param int $maxlen [optional] <p> |
||
2318 | * Maximum length of data read. The default is to read until end |
||
2319 | * of file is reached. |
||
2320 | * </p> |
||
2321 | * @param int $timeout |
||
2322 | * |
||
2323 | 7 | * @param boolean $convertToUtf8 WARNING: maybe you can't use this option for images or pdf, because they used non |
|
2324 | * default utf-8 chars |
||
2325 | 7 | * |
|
2326 | 7 | * @return string The function returns the read data or false on failure. |
|
2327 | 2 | */ |
|
2328 | public static function file_get_contents($filename, $flags = null, $context = null, $offset = null, $maxlen = null, $timeout = 10, $convertToUtf8 = true) |
||
2366 | |||
2367 | /** |
||
2368 | * Checks if a file starts with BOM character. |
||
2369 | * |
||
2370 | * @param string $file_path Path to a valid file. |
||
2371 | * |
||
2372 | * @return bool True if the file has BOM at the start, False otherwise. |
||
2373 | */ |
||
2374 | public static function file_has_bom($file_path) |
||
2378 | |||
2379 | /** |
||
2380 | * Normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
2381 | * |
||
2382 | * @param mixed $var |
||
2383 | * @param int $normalization_form |
||
2384 | * @param string $leading_combining |
||
2385 | * |
||
2386 | * @return mixed |
||
2387 | */ |
||
2388 | public static function filter($var, $normalization_form = 4, $leading_combining = '◌') |
||
2431 | |||
2432 | /** |
||
2433 | * "filter_input()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
2434 | * |
||
2435 | * @param int $type |
||
2436 | * @param string $var |
||
2437 | 1 | * @param int $filter |
|
2438 | * @param mixed $option |
||
2439 | 1 | * |
|
2440 | 1 | * @return mixed |
|
2441 | 1 | */ |
|
2442 | 1 | View Code Duplication | public static function filter_input($type, $var, $filter = FILTER_DEFAULT, $option = null) |
2452 | |||
2453 | /** |
||
2454 | * "filter_input_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
2455 | * |
||
2456 | * @param int $type |
||
2457 | 1 | * @param mixed $definition |
|
2458 | * @param bool $add_empty |
||
2459 | 1 | * |
|
2460 | * @return mixed |
||
2461 | */ |
||
2462 | View Code Duplication | public static function filter_input_array($type, $definition = null, $add_empty = true) |
|
2472 | 8 | ||
2473 | /** |
||
2474 | 8 | * "filter_var()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
|
2475 | * |
||
2476 | 8 | * @param mixed $var |
|
2477 | 2 | * @param int $filter |
|
2478 | * @param mixed $option |
||
2479 | * |
||
2480 | 8 | * @return mixed |
|
2481 | 1 | */ |
|
2482 | 1 | View Code Duplication | public static function filter_var($var, $filter = FILTER_DEFAULT, $option = null) |
2492 | |||
2493 | /** |
||
2494 | * "filter_var_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
2495 | 1 | * |
|
2496 | * @param array $data |
||
2497 | 1 | * @param mixed $definition |
|
2498 | * @param bool $add_empty |
||
2499 | * |
||
2500 | * @return mixed |
||
2501 | */ |
||
2502 | View Code Duplication | public static function filter_var_array($data, $definition = null, $add_empty = true) |
|
2512 | |||
2513 | 1 | /** |
|
2514 | * Checks if the number of Unicode characters in a string are not |
||
2515 | * more than the specified integer. |
||
2516 | * |
||
2517 | * @param string $str The original string to be checked. |
||
2518 | * @param int $box_size The size in number of chars to be checked against string. |
||
2519 | * |
||
2520 | * @return bool true if string is less than or equal to $box_size, false otherwise. |
||
2521 | */ |
||
2522 | public static function fits_inside($str, $box_size) |
||
2526 | |||
2527 | 1 | /** |
|
2528 | 1 | * Fixing a broken UTF-8 string. |
|
2529 | * |
||
2530 | * @param string $str |
||
2531 | 1 | * |
|
2532 | * @return string |
||
2533 | 1 | */ |
|
2534 | 1 | public static function fix_simple_utf8($str) |
|
2552 | |||
2553 | /** |
||
2554 | * Fix a double (or multiple) encoded UTF8 string. |
||
2555 | * |
||
2556 | * @param array|string $str |
||
2557 | * |
||
2558 | * @return string |
||
2559 | */ |
||
2560 | public static function fix_utf8($str) |
||
2580 | |||
2581 | /** |
||
2582 | * Get character of a specific character. |
||
2583 | * |
||
2584 | * @param string $char Character. |
||
2585 | * |
||
2586 | * @return string 'RTL' or 'LTR' |
||
2587 | */ |
||
2588 | public static function getCharDirection($char) |
||
2699 | |||
2700 | /** |
||
2701 | * get data from "/data/*.ser" |
||
2702 | * |
||
2703 | * @param string $file |
||
2704 | * |
||
2705 | * @return bool|string|array|int false on error |
||
2706 | */ |
||
2707 | protected static function getData($file) |
||
2717 | 1 | ||
2718 | 1 | /** |
|
2719 | * Creates a random string of UTF-8 characters. |
||
2720 | * |
||
2721 | * @param int $len The length of string in characters. |
||
2722 | * |
||
2723 | * @return string String consisting of random characters. |
||
2724 | */ |
||
2725 | public static function hash($len = 8) |
||
2765 | |||
2766 | /** |
||
2767 | * Converts hexadecimal U+xxxx code point representation to Integer. |
||
2768 | * |
||
2769 | * INFO: opposite to UTF8::int_to_hex( ) |
||
2770 | * |
||
2771 | * @param string $str The hexadecimal code point representation. |
||
2772 | * |
||
2773 | * @return int The code point, or 0 on failure. |
||
2774 | */ |
||
2775 | public static function hex_to_int($str) |
||
2783 | |||
2784 | /** |
||
2785 | * Converts a UTF-8 string to a series of HTML numbered entities. |
||
2786 | * |
||
2787 | * e.g.: {'ی |
||
2788 | * |
||
2789 | * @param string $str The Unicode string to be encoded as numbered entities. |
||
2790 | 15 | * @param bool $keepAsciiChars Keep ASCII chars. |
|
2791 | * |
||
2792 | 15 | * @return string HTML numbered entities. |
|
2793 | */ |
||
2794 | 15 | public static function html_encode($str, $keepAsciiChars = false) |
|
2818 | 15 | ||
2819 | /** |
||
2820 | 15 | * UTF-8 version of html_entity_decode() |
|
2821 | * |
||
2822 | 15 | * The reason we are not using html_entity_decode() by itself is because |
|
2823 | * while it is not technically correct to leave out the semicolon |
||
2824 | 15 | * at the end of an entity most browsers will still interpret the entity |
|
2825 | * correctly. html_entity_decode() does not convert entities without |
||
2826 | * semicolons, so we are left with our own little solution here. Bummer. |
||
2827 | * |
||
2828 | * Convert all HTML entities to their applicable characters |
||
2829 | * |
||
2830 | * @link http://php.net/manual/en/function.html-entity-decode.php |
||
2831 | * |
||
2832 | * @param string $str <p> |
||
2833 | * The input string. |
||
2834 | 12 | * </p> |
|
2835 | * @param int $flags [optional] <p> |
||
2836 | 12 | * A bitmask of one or more of the following flags, which specify how to handle quotes and |
|
2837 | * which document type to use. The default is ENT_COMPAT | ENT_HTML401. |
||
2838 | 12 | * <table> |
|
2839 | * Available <i>flags</i> constants |
||
2840 | 12 | * <tr valign="top"> |
|
2841 | 5 | * <td>Constant Name</td> |
|
2842 | * <td>Description</td> |
||
2843 | * </tr> |
||
2844 | 11 | * <tr valign="top"> |
|
2845 | * <td><b>ENT_COMPAT</b></td> |
||
2846 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
2847 | * </tr> |
||
2848 | * <tr valign="top"> |
||
2849 | * <td><b>ENT_QUOTES</b></td> |
||
2850 | * <td>Will convert both double and single quotes.</td> |
||
2851 | * </tr> |
||
2852 | * <tr valign="top"> |
||
2853 | * <td><b>ENT_NOQUOTES</b></td> |
||
2854 | * <td>Will leave both double and single quotes unconverted.</td> |
||
2855 | * </tr> |
||
2856 | * <tr valign="top"> |
||
2857 | * <td><b>ENT_HTML401</b></td> |
||
2858 | * <td> |
||
2859 | * Handle code as HTML 4.01. |
||
2860 | * </td> |
||
2861 | * </tr> |
||
2862 | * <tr valign="top"> |
||
2863 | * <td><b>ENT_XML1</b></td> |
||
2864 | * <td> |
||
2865 | * Handle code as XML 1. |
||
2866 | * </td> |
||
2867 | * </tr> |
||
2868 | * <tr valign="top"> |
||
2869 | * <td><b>ENT_XHTML</b></td> |
||
2870 | * <td> |
||
2871 | * Handle code as XHTML. |
||
2872 | * </td> |
||
2873 | * </tr> |
||
2874 | * <tr valign="top"> |
||
2875 | * <td><b>ENT_HTML5</b></td> |
||
2876 | * <td> |
||
2877 | * Handle code as HTML 5. |
||
2878 | * </td> |
||
2879 | * </tr> |
||
2880 | * </table> |
||
2881 | * </p> |
||
2882 | * @param string $encoding [optional] <p> |
||
2883 | * Encoding to use. |
||
2884 | * </p> |
||
2885 | * |
||
2886 | * @return string the decoded string. |
||
2887 | */ |
||
2888 | public static function html_entity_decode($str, $flags = null, $encoding = 'UTF-8') |
||
2924 | |||
2925 | /** |
||
2926 | * Convert all applicable characters to HTML entities: UTF-8 version of htmlentities() |
||
2927 | * |
||
2928 | * @link http://php.net/manual/en/function.htmlentities.php |
||
2929 | * |
||
2930 | * @param string $str <p> |
||
2931 | * The input string. |
||
2932 | * </p> |
||
2933 | * @param int $flags [optional] <p> |
||
2934 | * A bitmask of one or more of the following flags, which specify how to handle quotes, |
||
2935 | * invalid code unit sequences and the used document type. The default is |
||
2936 | * ENT_COMPAT | ENT_HTML401. |
||
2937 | * <table> |
||
2938 | * Available <i>flags</i> constants |
||
2939 | * <tr valign="top"> |
||
2940 | * <td>Constant Name</td> |
||
2941 | * <td>Description</td> |
||
2942 | * </tr> |
||
2943 | * <tr valign="top"> |
||
2944 | * <td><b>ENT_COMPAT</b></td> |
||
2945 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
2946 | * </tr> |
||
2947 | * <tr valign="top"> |
||
2948 | * <td><b>ENT_QUOTES</b></td> |
||
2949 | * <td>Will convert both double and single quotes.</td> |
||
2950 | 2 | * </tr> |
|
2951 | * <tr valign="top"> |
||
2952 | 2 | * <td><b>ENT_NOQUOTES</b></td> |
|
2953 | * <td>Will leave both double and single quotes unconverted.</td> |
||
2954 | * </tr> |
||
2955 | * <tr valign="top"> |
||
2956 | * <td><b>ENT_IGNORE</b></td> |
||
2957 | * <td> |
||
2958 | * Silently discard invalid code unit sequences instead of returning |
||
2959 | * an empty string. Using this flag is discouraged as it |
||
2960 | * may have security implications. |
||
2961 | * </td> |
||
2962 | * </tr> |
||
2963 | * <tr valign="top"> |
||
2964 | * <td><b>ENT_SUBSTITUTE</b></td> |
||
2965 | * <td> |
||
2966 | * Replace invalid code unit sequences with a Unicode Replacement Character |
||
2967 | * U+FFFD (UTF-8) or &#38;#FFFD; (otherwise) instead of returning an empty string. |
||
2968 | * </td> |
||
2969 | * </tr> |
||
2970 | * <tr valign="top"> |
||
2971 | * <td><b>ENT_DISALLOWED</b></td> |
||
2972 | * <td> |
||
2973 | * Replace invalid code points for the given document type with a |
||
2974 | * Unicode Replacement Character U+FFFD (UTF-8) or &#38;#FFFD; |
||
2975 | * (otherwise) instead of leaving them as is. This may be useful, for |
||
2976 | * instance, to ensure the well-formedness of XML documents with |
||
2977 | * embedded external content. |
||
2978 | * </td> |
||
2979 | * </tr> |
||
2980 | * <tr valign="top"> |
||
2981 | * <td><b>ENT_HTML401</b></td> |
||
2982 | * <td> |
||
2983 | * Handle code as HTML 4.01. |
||
2984 | * </td> |
||
2985 | * </tr> |
||
2986 | * <tr valign="top"> |
||
2987 | * <td><b>ENT_XML1</b></td> |
||
2988 | * <td> |
||
2989 | * Handle code as XML 1. |
||
2990 | * </td> |
||
2991 | * </tr> |
||
2992 | * <tr valign="top"> |
||
2993 | * <td><b>ENT_XHTML</b></td> |
||
2994 | * <td> |
||
2995 | * Handle code as XHTML. |
||
2996 | * </td> |
||
2997 | * </tr> |
||
2998 | * <tr valign="top"> |
||
2999 | * <td><b>ENT_HTML5</b></td> |
||
3000 | * <td> |
||
3001 | * Handle code as HTML 5. |
||
3002 | * </td> |
||
3003 | * </tr> |
||
3004 | * </table> |
||
3005 | * </p> |
||
3006 | * @param string $encoding [optional] <p> |
||
3007 | * Like <b>htmlspecialchars</b>, |
||
3008 | * <b>htmlentities</b> takes an optional third argument |
||
3009 | * <i>encoding</i> which defines encoding used in |
||
3010 | * conversion. |
||
3011 | * Although this argument is technically optional, you are highly |
||
3012 | * encouraged to specify the correct value for your code. |
||
3013 | * </p> |
||
3014 | * @param bool $double_encode [optional] <p> |
||
3015 | * When <i>double_encode</i> is turned off PHP will not |
||
3016 | * encode existing html entities. The default is to convert everything. |
||
3017 | * </p> |
||
3018 | * |
||
3019 | * |
||
3020 | * @return string the encoded string. |
||
3021 | * </p> |
||
3022 | * <p> |
||
3023 | * If the input <i>string</i> contains an invalid code unit |
||
3024 | * sequence within the given <i>encoding</i> an empty string |
||
3025 | * will be returned, unless either the <b>ENT_IGNORE</b> or |
||
3026 | * <b>ENT_SUBSTITUTE</b> flags are set. |
||
3027 | */ |
||
3028 | public static function htmlentities($str, $flags = ENT_COMPAT, $encoding = 'UTF-8', $double_encode = true) |
||
3032 | |||
3033 | /** |
||
3034 | * Convert special characters to HTML entities: UTF-8 version of htmlspecialchars() |
||
3035 | * |
||
3036 | * @link http://php.net/manual/en/function.htmlspecialchars.php |
||
3037 | * |
||
3038 | * @param string $str <p> |
||
3039 | * The string being converted. |
||
3040 | * </p> |
||
3041 | * @param int $flags [optional] <p> |
||
3042 | * A bitmask of one or more of the following flags, which specify how to handle quotes, |
||
3043 | * invalid code unit sequences and the used document type. The default is |
||
3044 | * ENT_COMPAT | ENT_HTML401. |
||
3045 | * <table> |
||
3046 | * Available <i>flags</i> constants |
||
3047 | * <tr valign="top"> |
||
3048 | * <td>Constant Name</td> |
||
3049 | * <td>Description</td> |
||
3050 | * </tr> |
||
3051 | * <tr valign="top"> |
||
3052 | * <td><b>ENT_COMPAT</b></td> |
||
3053 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
3054 | * </tr> |
||
3055 | * <tr valign="top"> |
||
3056 | * <td><b>ENT_QUOTES</b></td> |
||
3057 | * <td>Will convert both double and single quotes.</td> |
||
3058 | * </tr> |
||
3059 | * <tr valign="top"> |
||
3060 | * <td><b>ENT_NOQUOTES</b></td> |
||
3061 | * <td>Will leave both double and single quotes unconverted.</td> |
||
3062 | 1 | * </tr> |
|
3063 | * <tr valign="top"> |
||
3064 | 1 | * <td><b>ENT_IGNORE</b></td> |
|
3065 | * <td> |
||
3066 | * Silently discard invalid code unit sequences instead of returning |
||
3067 | * an empty string. Using this flag is discouraged as it |
||
3068 | * may have security implications. |
||
3069 | * </td> |
||
3070 | * </tr> |
||
3071 | * <tr valign="top"> |
||
3072 | 1 | * <td><b>ENT_SUBSTITUTE</b></td> |
|
3073 | * <td> |
||
3074 | 1 | * Replace invalid code unit sequences with a Unicode Replacement Character |
|
3075 | * U+FFFD (UTF-8) or &#38;#FFFD; (otherwise) instead of returning an empty string. |
||
3076 | * </td> |
||
3077 | * </tr> |
||
3078 | * <tr valign="top"> |
||
3079 | * <td><b>ENT_DISALLOWED</b></td> |
||
3080 | * <td> |
||
3081 | * Replace invalid code points for the given document type with a |
||
3082 | * Unicode Replacement Character U+FFFD (UTF-8) or &#38;#FFFD; |
||
3083 | * (otherwise) instead of leaving them as is. This may be useful, for |
||
3084 | * instance, to ensure the well-formedness of XML documents with |
||
3085 | * embedded external content. |
||
3086 | * </td> |
||
3087 | * </tr> |
||
3088 | * <tr valign="top"> |
||
3089 | * <td><b>ENT_HTML401</b></td> |
||
3090 | * <td> |
||
3091 | * Handle code as HTML 4.01. |
||
3092 | * </td> |
||
3093 | * </tr> |
||
3094 | * <tr valign="top"> |
||
3095 | * <td><b>ENT_XML1</b></td> |
||
3096 | * <td> |
||
3097 | * Handle code as XML 1. |
||
3098 | * </td> |
||
3099 | * </tr> |
||
3100 | * <tr valign="top"> |
||
3101 | * <td><b>ENT_XHTML</b></td> |
||
3102 | * <td> |
||
3103 | 1 | * Handle code as XHTML. |
|
3104 | * </td> |
||
3105 | 1 | * </tr> |
|
3106 | * <tr valign="top"> |
||
3107 | * <td><b>ENT_HTML5</b></td> |
||
3108 | * <td> |
||
3109 | * Handle code as HTML 5. |
||
3110 | * </td> |
||
3111 | * </tr> |
||
3112 | * </table> |
||
3113 | * </p> |
||
3114 | * @param string $encoding [optional] <p> |
||
3115 | 1 | * Defines encoding used in conversion. |
|
3116 | * </p> |
||
3117 | 1 | * <p> |
|
3118 | * For the purposes of this function, the encodings |
||
3119 | * ISO-8859-1, ISO-8859-15, |
||
3120 | * UTF-8, cp866, |
||
3121 | * cp1251, cp1252, and |
||
3122 | * KOI8-R are effectively equivalent, provided the |
||
3123 | * <i>string</i> itself is valid for the encoding, as |
||
3124 | * the characters affected by <b>htmlspecialchars</b> occupy |
||
3125 | * the same positions in all of these encodings. |
||
3126 | * </p> |
||
3127 | 1 | * @param bool $double_encode [optional] <p> |
|
3128 | * When <i>double_encode</i> is turned off PHP will not |
||
3129 | 1 | * encode existing html entities, the default is to convert everything. |
|
3130 | * </p> |
||
3131 | * |
||
3132 | * @return string The converted string. |
||
3133 | * </p> |
||
3134 | * <p> |
||
3135 | * If the input <i>string</i> contains an invalid code unit |
||
3136 | * sequence within the given <i>encoding</i> an empty string |
||
3137 | * will be returned, unless either the <b>ENT_IGNORE</b> or |
||
3138 | * <b>ENT_SUBSTITUTE</b> flags are set. |
||
3139 | */ |
||
3140 | public static function htmlspecialchars($str, $flags = ENT_COMPAT, $encoding = 'UTF-8', $double_encode = true) |
||
3144 | |||
3145 | /** |
||
3146 | * checks whether iconv is available on the server |
||
3147 | * |
||
3148 | * @return bool True if available, False otherwise |
||
3149 | */ |
||
3150 | public static function iconv_loaded() |
||
3154 | |||
3155 | /** |
||
3156 | * Converts Integer to hexadecimal U+xxxx code point representation. |
||
3157 | * |
||
3158 | * @param int $int The integer to be converted to hexadecimal code point. |
||
3159 | * @param string $pfix |
||
3160 | * |
||
3161 | * @return string The code point, or empty string on failure. |
||
3162 | */ |
||
3163 | public static function int_to_hex($int, $pfix = 'U+') |
||
3175 | |||
3176 | /** |
||
3177 | * checks whether intl is available on the server |
||
3178 | * |
||
3179 | 16 | * @return bool True if available, False otherwise |
|
3180 | */ |
||
3181 | 16 | public static function intl_loaded() |
|
3185 | |||
3186 | /** |
||
3187 | * checks whether intl-char is available on the server |
||
3188 | * |
||
3189 | * @return bool True if available, False otherwise |
||
3190 | */ |
||
3191 | public static function intlChar_loaded() |
||
3195 | |||
3196 | /** |
||
3197 | * alias for "UTF8::is_ascii()" |
||
3198 | * |
||
3199 | * @param string $str |
||
3200 | * |
||
3201 | * @return boolean |
||
3202 | */ |
||
3203 | public static function isAscii($str) |
||
3207 | |||
3208 | 1 | /** |
|
3209 | 1 | * alias for "UTF8::is_base64" |
|
3210 | * |
||
3211 | * @param string $str |
||
3212 | 1 | * |
|
3213 | 1 | * @return bool |
|
3214 | */ |
||
3215 | 1 | public static function isBase64($str) |
|
3219 | |||
3220 | /** |
||
3221 | * alias for "UTF8::is_bom" |
||
3222 | * |
||
3223 | * @param string $utf8_chr |
||
3224 | * |
||
3225 | * @return boolean |
||
3226 | 4 | */ |
|
3227 | public static function isBom($utf8_chr) |
||
3231 | |||
3232 | 4 | /** |
|
3233 | * Try to check if a string is a json-string... |
||
3234 | 4 | * |
|
3235 | 4 | * @param $str |
|
3236 | 4 | * |
|
3237 | 4 | * @return bool |
|
3238 | 3 | */ |
|
3239 | public static function isJson($str) |
||
3257 | |||
3258 | /** |
||
3259 | * check if string contains any html-tags <lall> |
||
3260 | * |
||
3261 | * @param string $str |
||
3262 | * |
||
3263 | * @return boolean |
||
3264 | */ |
||
3265 | public static function isHtml($str) |
||
3284 | |||
3285 | 2 | /** |
|
3286 | * alias for "UTF8::is_utf8" |
||
3287 | 2 | * |
|
3288 | 2 | * @param string $str |
|
3289 | * |
||
3290 | 2 | * @return bool |
|
3291 | 2 | */ |
|
3292 | 2 | public static function isUtf8($str) |
|
3296 | 2 | ||
3297 | 2 | /** |
|
3298 | 2 | * Checks if a string is 7 bit ASCII. |
|
3299 | 1 | * |
|
3300 | 1 | * @param string $str The string to check. |
|
3301 | 2 | * |
|
3302 | 2 | * @return bool <strong>true</strong> if it is ASCII<br /> |
|
3303 | 2 | * <strong>false</strong> otherwise |
|
3304 | */ |
||
3305 | 2 | public static function is_ascii($str) |
|
3309 | 2 | ||
3310 | 2 | /** |
|
3311 | 2 | * Returns true if the string is base64 encoded, false otherwise. |
|
3312 | 2 | * |
|
3313 | 2 | * @param string $str |
|
3314 | 1 | * |
|
3315 | 1 | * @return bool Whether or not $str is base64 encoded |
|
3316 | 2 | */ |
|
3317 | 2 | public static function is_base64($str) |
|
3331 | |||
3332 | /** |
||
3333 | * Check if the input is binary... (is look like a hack) |
||
3334 | * |
||
3335 | * @param string $input |
||
3336 | * |
||
3337 | * @return bool |
||
3338 | */ |
||
3339 | public static function is_binary($input) |
||
3356 | 2 | ||
3357 | 2 | /** |
|
3358 | 2 | * Check if the file is binary. |
|
3359 | * |
||
3360 | 2 | * @param string $file |
|
3361 | 2 | * |
|
3362 | 2 | * @return boolean |
|
3363 | 1 | */ |
|
3364 | 1 | public static function is_binary_file($file) |
|
3376 | |||
3377 | /** |
||
3378 | * Checks if the given string is exactly "UTF8 - Byte Order Mark". |
||
3379 | * |
||
3380 | * WARNING: Use "UTF8::string_has_bom()" if you will check BOM in a string. |
||
3381 | * |
||
3382 | * @param string $utf8_chr The input string. |
||
3383 | 2 | * |
|
3384 | * @return bool True if the $utf8_chr is Byte Order Mark, False otherwise. |
||
3385 | 2 | */ |
|
3386 | public static function is_bom($utf8_chr) |
||
3390 | |||
3391 | /** |
||
3392 | * Check if the string is UTF-16. |
||
3393 | * |
||
3394 | * @param string $str |
||
3395 | * |
||
3396 | * @return int|false false if is't not UTF16, 1 for UTF-16LE, 2 for UTF-16BE. |
||
3397 | 34 | */ |
|
3398 | View Code Duplication | public static function is_utf16($str) |
|
3445 | 6 | ||
3446 | 6 | /** |
|
3447 | 6 | * Check if the string is UTF-32. |
|
3448 | 12 | * |
|
3449 | * @param string $str |
||
3450 | * |
||
3451 | * @return int|false false if is't not UTF16, 1 for UTF-32LE, 2 for UTF-32BE. |
||
3452 | */ |
||
3453 | View Code Duplication | public static function is_utf32($str) |
|
3500 | 28 | ||
3501 | 5 | /** |
|
3502 | * Checks whether the passed string contains only byte sequences that appear valid UTF-8 characters. |
||
3503 | * |
||
3504 | 28 | * @see http://hsivonen.iki.fi/php-utf8/ |
|
3505 | 28 | * |
|
3506 | 28 | * @param string $str The string to be checked. |
|
3507 | 28 | * |
|
3508 | 28 | * @return bool |
|
3509 | */ |
||
3510 | public static function is_utf8($str) |
||
3634 | |||
3635 | /** |
||
3636 | * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)<br/> |
||
3637 | * Decodes a JSON string |
||
3638 | * |
||
3639 | * @link http://php.net/manual/en/function.json-decode.php |
||
3640 | * |
||
3641 | * @param string $json <p> |
||
3642 | 24 | * The <i>json</i> string being decoded. |
|
3643 | * </p> |
||
3644 | 24 | * <p> |
|
3645 | * This function only works with UTF-8 encoded strings. |
||
3646 | 24 | * </p> |
|
3647 | 2 | * <p>PHP implements a superset of |
|
3648 | * JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard |
||
3649 | * only supports these values when they are nested inside an array or an object. |
||
3650 | 23 | * </p> |
|
3651 | * @param bool $assoc [optional] <p> |
||
3652 | 23 | * When <b>TRUE</b>, returned objects will be converted into |
|
3653 | * associative arrays. |
||
3654 | * </p> |
||
3655 | * @param int $depth [optional] <p> |
||
3656 | * User specified recursion depth. |
||
3657 | * </p> |
||
3658 | * @param int $options [optional] <p> |
||
3659 | * Bitmask of JSON decode options. Currently only |
||
3660 | * <b>JSON_BIGINT_AS_STRING</b> |
||
3661 | * is supported (default is to cast large integers as floats) |
||
3662 | 1 | * </p> |
|
3663 | * |
||
3664 | 1 | * @return mixed the value encoded in <i>json</i> in appropriate |
|
3665 | * PHP type. Values true, false and |
||
3666 | * null (case-insensitive) are returned as <b>TRUE</b>, <b>FALSE</b> |
||
3667 | * and <b>NULL</b> respectively. <b>NULL</b> is returned if the |
||
3668 | 1 | * <i>json</i> cannot be decoded or if the encoded |
|
3669 | * data is deeper than the recursion limit. |
||
3670 | */ |
||
3671 | public static function json_decode($json, $assoc = false, $depth = 512, $options = 0) |
||
3683 | 1 | ||
3684 | /** |
||
3685 | 1 | * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)<br/> |
|
3686 | * Returns the JSON representation of a value |
||
3687 | * |
||
3688 | * @link http://php.net/manual/en/function.json-encode.php |
||
3689 | * |
||
3690 | * @param mixed $value <p> |
||
3691 | * The <i>value</i> being encoded. Can be any type except |
||
3692 | * a resource. |
||
3693 | * </p> |
||
3694 | 2 | * <p> |
|
3695 | * All string data must be UTF-8 encoded. |
||
3696 | 2 | * </p> |
|
3697 | * <p>PHP implements a superset of |
||
3698 | 2 | * JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard |
|
3699 | 2 | * only supports these values when they are nested inside an array or an object. |
|
3700 | 2 | * </p> |
|
3701 | * @param int $options [optional] <p> |
||
3702 | 2 | * Bitmask consisting of <b>JSON_HEX_QUOT</b>, |
|
3703 | * <b>JSON_HEX_TAG</b>, |
||
3704 | * <b>JSON_HEX_AMP</b>, |
||
3705 | * <b>JSON_HEX_APOS</b>, |
||
3706 | * <b>JSON_NUMERIC_CHECK</b>, |
||
3707 | * <b>JSON_PRETTY_PRINT</b>, |
||
3708 | * <b>JSON_UNESCAPED_SLASHES</b>, |
||
3709 | * <b>JSON_FORCE_OBJECT</b>, |
||
3710 | * <b>JSON_UNESCAPED_UNICODE</b>. The behaviour of these |
||
3711 | * constants is described on |
||
3712 | 1 | * the JSON constants page. |
|
3713 | * </p> |
||
3714 | 1 | * @param int $depth [optional] <p> |
|
3715 | * Set the maximum depth. Must be greater than zero. |
||
3716 | * </p> |
||
3717 | * |
||
3718 | 1 | * @return string a JSON encoded string on success or <b>FALSE</b> on failure. |
|
3719 | */ |
||
3720 | public static function json_encode($value, $options = 0, $depth = 512) |
||
3732 | 13 | ||
3733 | /** |
||
3734 | * Makes string's first char lowercase. |
||
3735 | 13 | * |
|
3736 | 13 | * @param string $str The input string |
|
3737 | 13 | * |
|
3738 | 13 | * @return string The resulting string |
|
3739 | 13 | */ |
|
3740 | 13 | public static function lcfirst($str) |
|
3744 | 13 | ||
3745 | 13 | /** |
|
3746 | 13 | * Strip whitespace or other characters from beginning of a UTF-8 string. |
|
3747 | 13 | * |
|
3748 | 13 | * WARNING: This is much slower then "ltrim()" !!!! |
|
3749 | * |
||
3750 | 13 | * @param string $str The string to be trimmed |
|
3751 | 2 | * @param string $chars Optional characters to be stripped |
|
3752 | * |
||
3753 | * @return string The string with unwanted characters stripped from the left |
||
3754 | 13 | */ |
|
3755 | View Code Duplication | public static function ltrim($str = '', $chars = INF) |
|
3767 | 2 | ||
3768 | /** |
||
3769 | 2 | * Returns the UTF-8 character with the maximum code point in the given data. |
|
3770 | 1 | * |
|
3771 | 1 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
|
3772 | 1 | * |
|
3773 | * @return string The character with the highest code point than others. |
||
3774 | 2 | */ |
|
3775 | View Code Duplication | public static function max($arg) |
|
3783 | |||
3784 | /** |
||
3785 | * Calculates and returns the maximum number of bytes taken by any |
||
3786 | 8 | * UTF-8 encoded character in the given string. |
|
3787 | * |
||
3788 | 8 | * @param string $str The original Unicode string. |
|
3789 | 8 | * |
|
3790 | * @return int An array of byte lengths of each character. |
||
3791 | 8 | */ |
|
3792 | public static function max_chr_width($str) |
||
3801 | |||
3802 | 2 | /** |
|
3803 | 2 | * checks whether mbstring is available on the server |
|
3804 | * |
||
3805 | 8 | * @return bool True if available, False otherwise |
|
3806 | 8 | */ |
|
3807 | 1 | public static function mbstring_loaded() |
|
3817 | |||
3818 | /** |
||
3819 | * Returns the UTF-8 character with the minimum code point in the given data. |
||
3820 | * |
||
3821 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
||
3822 | * |
||
3823 | * @return string The character with the lowest code point than others. |
||
3824 | */ |
||
3825 | View Code Duplication | public static function min($arg) |
|
3833 | |||
3834 | /** |
||
3835 | * Normalize the encoding-name input. |
||
3836 | * |
||
3837 | * @param string $encoding e.g.: ISO, UTF8, WINDOWS-1251 etc. |
||
3838 | * |
||
3839 | * @return string e.g.: ISO-8859-1, UTF-8, WINDOWS-1251 etc. |
||
3840 | */ |
||
3841 | public static function normalizeEncoding($encoding) |
||
3886 | |||
3887 | /** |
||
3888 | * Normalize MS Word special characters. |
||
3889 | * |
||
3890 | * @param string $str The string to be normalized. |
||
3891 | * |
||
3892 | * @return string |
||
3893 | */ |
||
3894 | public static function normalize_msword($str) |
||
3906 | |||
3907 | /** |
||
3908 | * Normalize the whitespace. |
||
3909 | * |
||
3910 | * @param string $str The string to be normalized. |
||
3911 | * @param bool $keepNonBreakingSpace Set to true, to keep non-breaking-spaces. |
||
3912 | 33 | * @param bool $keepBidiUnicodeControls Set to true, to keep non-printable (for the web) bidirectional text chars. |
|
3913 | * |
||
3914 | * @return string |
||
3915 | 33 | */ |
|
3916 | public static function normalize_whitespace($str, $keepNonBreakingSpace = false, $keepBidiUnicodeControls = false) |
||
3945 | |||
3946 | 1 | /** |
|
3947 | * Format a number with grouped thousands. |
||
3948 | * |
||
3949 | 1 | * @param float $number |
|
3950 | * @param int $decimals |
||
3951 | * @param string $dec_point |
||
3952 | 1 | * @param string $thousands_sep |
|
3953 | * |
||
3954 | * @return string |
||
3955 | */ |
||
3956 | 1 | public static function number_format($number, $decimals = 0, $dec_point = '.', $thousands_sep = ',') |
|
3981 | 2 | ||
3982 | 2 | /** |
|
3983 | 7 | * Calculates Unicode code point of the given UTF-8 encoded character. |
|
3984 | * |
||
3985 | 7 | * @param string $s The character of which to calculate code point. |
|
3986 | * |
||
3987 | * @return int Unicode code point of the given character,<br /> |
||
3988 | 3 | * 0 on invalid UTF-8 byte sequence. |
|
3989 | 1 | */ |
|
3990 | 1 | public static function ord($s) |
|
4023 | |||
4024 | 1 | /** |
|
4025 | * Parses the string into variables. |
||
4026 | 1 | * |
|
4027 | 1 | * WARNING: This differs from parse_str() by returning the results |
|
4028 | 1 | * instead of placing them in the local scope! |
|
4029 | * |
||
4030 | 1 | * @link http://php.net/manual/en/function.parse-str.php |
|
4031 | 1 | * |
|
4032 | 1 | * @param string $str <p> |
|
4033 | 1 | * The input string. |
|
4034 | 1 | * </p> |
|
4035 | * @param array $result <p> |
||
4036 | 1 | * If the second parameter arr is present, |
|
4037 | * variables are stored in this variable as array elements instead. |
||
4038 | * </p> |
||
4039 | * |
||
4040 | * @return void |
||
4041 | */ |
||
4042 | public static function parse_str($str, &$result) |
||
4051 | |||
4052 | 36 | /** |
|
4053 | * checks if \u modifier is available that enables Unicode support in PCRE. |
||
4054 | * |
||
4055 | 36 | * @return bool True if support is available, false otherwise |
|
4056 | */ |
||
4057 | public static function pcre_utf8_support() |
||
4062 | 36 | ||
4063 | /** |
||
4064 | 36 | * Create an array containing a range of UTF-8 characters. |
|
4065 | * |
||
4066 | * @param mixed $var1 Numeric or hexadecimal code points, or a UTF-8 character to start from. |
||
4067 | 36 | * @param mixed $var2 Numeric or hexadecimal code points, or a UTF-8 character to end at. |
|
4068 | 36 | * |
|
4069 | * @return array |
||
4070 | 36 | */ |
|
4071 | public static function range($var1, $var2) |
||
4109 | |||
4110 | 23 | /** |
|
4111 | 5 | * Remove the BOM from UTF-8 / UTF-16 / UTF-32 strings. |
|
4112 | * |
||
4113 | * @param string $str |
||
4114 | 19 | * |
|
4115 | * @return string |
||
4116 | 19 | */ |
|
4117 | public static function removeBOM($str = '') |
||
4141 | |||
4142 | 15 | /** |
|
4143 | 14 | * Removes duplicate occurrences of a string in another string. |
|
4144 | 15 | * |
|
4145 | 1 | * @param string $str The base string |
|
4146 | 1 | * @param string|array $what String to search for in the base string |
|
4147 | * |
||
4148 | * @return string The result string with removed duplicates |
||
4149 | 16 | */ |
|
4150 | public static function remove_duplicates($str, $what = ' ') |
||
4164 | |||
4165 | /** |
||
4166 | * Remove Invisible Characters |
||
4167 | * |
||
4168 | * This prevents sandwiching null characters |
||
4169 | * between ascii characters, like Java\0script. |
||
4170 | * |
||
4171 | * copy&past from https://github.com/bcit-ci/CodeIgniter/blob/develop/system/core/Common.php |
||
4172 | * |
||
4173 | * @param string $str |
||
4174 | * @param bool $url_encoded |
||
4175 | * |
||
4176 | * @return string |
||
4177 | */ |
||
4178 | public static function remove_invisible_characters($str, $url_encoded = true) |
||
4198 | |||
4199 | 25 | /** |
|
4200 | * replace diamond question mark (�) |
||
4201 | 25 | * |
|
4202 | * @param string $str |
||
4203 | 25 | * @param string $unknown |
|
4204 | 5 | * |
|
4205 | * @return string |
||
4206 | */ |
||
4207 | public static function replace_diamond_question_mark($str, $unknown = '?') |
||
4221 | 24 | ||
4222 | 24 | /** |
|
4223 | * Strip whitespace or other characters from end of a UTF-8 string. |
||
4224 | 24 | * |
|
4225 | * WARNING: This is much slower then "rtrim()" !!!! |
||
4226 | * |
||
4227 | * @param string $str The string to be trimmed |
||
4228 | * @param string $chars Optional characters to be stripped |
||
4229 | * |
||
4230 | * @return string The string with unwanted characters stripped from the right |
||
4231 | */ |
||
4232 | View Code Duplication | public static function rtrim($str = '', $chars = INF) |
|
4244 | |||
4245 | /** |
||
4246 | * rxClass |
||
4247 | * |
||
4248 | * @param string $s |
||
4249 | * @param string $class |
||
4250 | * |
||
4251 | * @return string |
||
4252 | */ |
||
4253 | protected static function rxClass($s, $class = '') |
||
4290 | |||
4291 | 2 | /** |
|
4292 | * Echo native UTF8-Support libs, e.g. for debugging. |
||
4293 | */ |
||
4294 | 2 | public static function showSupport() |
|
4300 | 3 | ||
4301 | 1 | /** |
|
4302 | * Converts a UTF-8 character to HTML Numbered Entity like "{". |
||
4303 | * |
||
4304 | * @param string $chr The Unicode character to be encoded as numbered entity. |
||
4305 | * @param bool $keepAsciiChars Keep ASCII chars. |
||
4306 | * |
||
4307 | * @return string The HTML numbered entity. |
||
4308 | */ |
||
4309 | public static function single_chr_html_encode($chr, $keepAsciiChars = false) |
||
4323 | 3 | ||
4324 | /** |
||
4325 | * Convert a string to an array of Unicode characters. |
||
4326 | * |
||
4327 | * @param string $str The string to split into array. |
||
4328 | * @param int $length Max character length of each array element. |
||
4329 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string. |
||
4330 | * |
||
4331 | * @return array An array containing chunks of the string. |
||
4332 | */ |
||
4333 | public static function split($str, $length = 1, $cleanUtf8 = false) |
||
4402 | 1 | ||
4403 | /** |
||
4404 | * Optimized "\mb_detect_encoding()"-function -> with support for UTF-16 and UTF-32. |
||
4405 | 1 | * |
|
4406 | * @param string $str |
||
4407 | * |
||
4408 | 1 | * @return false|string The detected string-encoding e.g. UTF-8 or UTF-16BE,<br /> |
|
4409 | * otherwise it will return false. |
||
4410 | */ |
||
4411 | public static function str_detect_encoding($str) |
||
4480 | |||
4481 | /** |
||
4482 | * Case-insensitive and UTF-8 safe version of <function>str_replace</function>. |
||
4483 | * |
||
4484 | * @link http://php.net/manual/en/function.str-ireplace.php |
||
4485 | * |
||
4486 | * @param mixed $search <p> |
||
4487 | * Every replacement with search array is |
||
4488 | * performed on the result of previous replacement. |
||
4489 | * </p> |
||
4490 | * @param mixed $replace <p> |
||
4491 | * </p> |
||
4492 | * @param mixed $subject <p> |
||
4493 | * If subject is an array, then the search and |
||
4494 | * replace is performed with every entry of |
||
4495 | * subject, and the return value is an array as |
||
4496 | * well. |
||
4497 | * </p> |
||
4498 | * @param int $count [optional] <p> |
||
4499 | * The number of matched and replaced needles will |
||
4500 | * be returned in count which is passed by |
||
4501 | * reference. |
||
4502 | * </p> |
||
4503 | * |
||
4504 | * @return mixed a string or an array of replacements. |
||
4505 | * @since 5.0 |
||
4506 | */ |
||
4507 | public static function str_ireplace($search, $replace, $subject, &$count = null) |
||
4525 | |||
4526 | /** |
||
4527 | * Limit the number of characters in a string, but also after the next word. |
||
4528 | * |
||
4529 | * @param string $str |
||
4530 | * @param int $length |
||
4531 | * @param string $strAddOn |
||
4532 | * |
||
4533 | * @return string |
||
4534 | */ |
||
4535 | public static function str_limit_after_word($str, $length = 100, $strAddOn = '...') |
||
4566 | |||
4567 | 17 | /** |
|
4568 | * Pad a UTF-8 string to given length with another string. |
||
4569 | * |
||
4570 | 17 | * @param string $input The input string |
|
4571 | * @param int $pad_length The length of return string |
||
4572 | 17 | * @param string $pad_string String to use for padding the input string |
|
4573 | * @param int $pad_type can be STR_PAD_RIGHT, STR_PAD_LEFT or STR_PAD_BOTH |
||
4574 | * |
||
4575 | * @return string Returns the padded string |
||
4576 | */ |
||
4577 | public static function str_pad($input, $pad_length, $pad_string = ' ', $pad_type = STR_PAD_RIGHT) |
||
4612 | |||
4613 | /** |
||
4614 | * Repeat a string. |
||
4615 | * |
||
4616 | 1 | * @param string $input <p> |
|
4617 | * The string to be repeated. |
||
4618 | 1 | * </p> |
|
4619 | * @param int $multiplier <p> |
||
4620 | 1 | * Number of time the input string should be |
|
4621 | * repeated. |
||
4622 | * </p> |
||
4623 | * <p> |
||
4624 | * multiplier has to be greater than or equal to 0. |
||
4625 | 1 | * If the multiplier is set to 0, the function |
|
4626 | 1 | * will return an empty string. |
|
4627 | * </p> |
||
4628 | * |
||
4629 | 1 | * @return string the repeated string. |
|
4630 | 1 | */ |
|
4631 | 1 | public static function str_repeat($input, $multiplier) |
|
4637 | |||
4638 | /** |
||
4639 | * INFO: this is only a wrapper for "str_replace()" -> the original functions is already UTF-8 safe |
||
4640 | * |
||
4641 | * (PHP 4, PHP 5)<br/> |
||
4642 | * Replace all occurrences of the search string with the replacement string |
||
4643 | * |
||
4644 | * @link http://php.net/manual/en/function.str-replace.php |
||
4645 | * |
||
4646 | * @param mixed $search <p> |
||
4647 | * The value being searched for, otherwise known as the needle. |
||
4648 | * An array may be used to designate multiple needles. |
||
4649 | * </p> |
||
4650 | * @param mixed $replace <p> |
||
4651 | * The replacement value that replaces found search |
||
4652 | * values. An array may be used to designate multiple replacements. |
||
4653 | * </p> |
||
4654 | 8 | * @param mixed $subject <p> |
|
4655 | * The string or array being searched and replaced on, |
||
4656 | 8 | * otherwise known as the haystack. |
|
4657 | * </p> |
||
4658 | 8 | * <p> |
|
4659 | * If subject is an array, then the search and |
||
4660 | 8 | * replace is performed with every entry of |
|
4661 | 2 | * subject, and the return value is an array as |
|
4662 | * well. |
||
4663 | * </p> |
||
4664 | 7 | * @param int $count [optional] If passed, this will hold the number of matched and replaced needles. |
|
4665 | * |
||
4666 | 7 | * @return mixed This function returns a string or an array with the replaced values. |
|
4667 | 7 | */ |
|
4668 | 7 | public static function str_replace($search, $replace, $subject, &$count = null) |
|
4672 | 7 | ||
4673 | 6 | /** |
|
4674 | * Shuffles all the characters in the string. |
||
4675 | * |
||
4676 | 4 | * @param string $str The input string |
|
4677 | * |
||
4678 | * @return string The shuffled string. |
||
4679 | 4 | */ |
|
4680 | 4 | public static function str_shuffle($str) |
|
4688 | 3 | ||
4689 | /** |
||
4690 | 3 | * Sort all characters according to code points. |
|
4691 | 1 | * |
|
4692 | * @param string $str A UTF-8 string. |
||
4693 | 1 | * @param bool $unique Sort unique. If true, repeated characters are ignored. |
|
4694 | 1 | * @param bool $desc If true, will sort characters in reverse code point order. |
|
4695 | 1 | * |
|
4696 | * @return string String of sorted characters |
||
4697 | 1 | */ |
|
4698 | public static function str_sort($str, $unique = false, $desc = false) |
||
4714 | |||
4715 | 4 | /** |
|
4716 | * Convert a string to an array. |
||
4717 | * |
||
4718 | * @param string $str |
||
4719 | * @param int $len |
||
4720 | 4 | * |
|
4721 | * @return array |
||
4722 | */ |
||
4723 | public static function str_split($str, $len = 1) |
||
4763 | 1 | ||
4764 | /** |
||
4765 | * Get a binary representation of a specific character. |
||
4766 | * |
||
4767 | 1 | * @param string $str The input character. |
|
4768 | * |
||
4769 | * @return string |
||
4770 | */ |
||
4771 | public static function str_to_binary($str) |
||
4790 | 8 | ||
4791 | /** |
||
4792 | 8 | * US-ASCII transliterations of Unicode text. |
|
4793 | * |
||
4794 | * Ported Sean M. Burke's Text::Unidecode Perl module (He did all the hard work!) |
||
4795 | * Warning: you should only pass this well formed UTF-8! |
||
4796 | * Be aware it works by making a copy of the input string which it appends transliterated |
||
4797 | * characters to - it uses a PHP output buffer to do this - it means, memory use will increase, |
||
4798 | * requiring up to the same amount again as the input string |
||
4799 | * |
||
4800 | * @see http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm |
||
4801 | * |
||
4802 | * @author <[email protected]> |
||
4803 | * |
||
4804 | * @param string $str UTF-8 string to convert |
||
4805 | 8 | * @param string $unknown Character use if character unknown. (default is ?) |
|
4806 | * |
||
4807 | 8 | * @return string US-ASCII string |
|
4808 | 5 | */ |
|
4809 | 5 | public static function str_transliterate($str, $unknown = '?') |
|
4901 | |||
4902 | /** |
||
4903 | * Counts number of words in the UTF-8 string. |
||
4904 | * |
||
4905 | * @param string $str The input string. |
||
4906 | * @param int $format <strong>0</strong> => return a number of words<br /> |
||
4907 | * <strong>1</strong> => return an array of words |
||
4908 | * <strong>2</strong> => return an array of words with word-offset as key |
||
4909 | * @param string $charlist |
||
4910 | * |
||
4911 | * @return array|float The number of words in the string |
||
4912 | */ |
||
4913 | public static function str_word_count($str, $format = 0, $charlist = '') |
||
4946 | |||
4947 | 7 | /** |
|
4948 | * Case-insensitive string comparison. |
||
4949 | * |
||
4950 | * @param string $str1 |
||
4951 | * @param string $str2 |
||
4952 | * |
||
4953 | * @return int Returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal. |
||
4954 | */ |
||
4955 | public static function strcasecmp($str1, $str2) |
||
4959 | 7 | ||
4960 | /** |
||
4961 | 7 | * String comparison. |
|
4962 | 2 | * |
|
4963 | * @param string $str1 |
||
4964 | * @param string $str2 |
||
4965 | * |
||
4966 | 5 | * @return int <strong>< 0</strong> if str1 is less than str2<br /> |
|
4967 | * <strong>> 0</strong> if str1 is greater than str2<br /> |
||
4968 | 5 | * <strong>0</strong> if they are equal. |
|
4969 | */ |
||
4970 | public static function strcmp($str1, $str2) |
||
4977 | |||
4978 | /** |
||
4979 | * Find length of initial segment not matching mask. |
||
4980 | * |
||
4981 | * @param string $str |
||
4982 | * @param string $charList |
||
4983 | * @param int $offset |
||
4984 | * @param int $length |
||
4985 | 66 | * |
|
4986 | * @return int|null |
||
4987 | 66 | */ |
|
4988 | public static function strcspn($str, $charList, $offset = 0, $length = 2147483647) |
||
5007 | |||
5008 | /** |
||
5009 | * Makes a UTF-8 string from code points. |
||
5010 | * |
||
5011 | * @param array $array Integer or Hexadecimal codepoints |
||
5012 | * |
||
5013 | * @return string UTF-8 encoded string |
||
5014 | */ |
||
5015 | public static function string($array) |
||
5027 | |||
5028 | /** |
||
5029 | * Checks if string starts with "UTF-8 BOM" character. |
||
5030 | * |
||
5031 | 2 | * @param string $str The input string. |
|
5032 | * |
||
5033 | 2 | * @return bool True if the string has BOM at the start, False otherwise. |
|
5034 | */ |
||
5035 | public static function string_has_bom($str) |
||
5039 | |||
5040 | /** |
||
5041 | * Strip HTML and PHP tags from a string. |
||
5042 | * |
||
5043 | * @link http://php.net/manual/en/function.strip-tags.php |
||
5044 | * |
||
5045 | * @param string $str <p> |
||
5046 | * The input string. |
||
5047 | * </p> |
||
5048 | * @param string $allowable_tags [optional] <p> |
||
5049 | * You can use the optional second parameter to specify tags which should |
||
5050 | * not be stripped. |
||
5051 | * </p> |
||
5052 | * <p> |
||
5053 | * HTML comments and PHP tags are also stripped. This is hardcoded and |
||
5054 | * can not be changed with allowable_tags. |
||
5055 | * </p> |
||
5056 | * |
||
5057 | * @return string the stripped string. |
||
5058 | */ |
||
5059 | public static function strip_tags($str, $allowable_tags = null) |
||
5066 | |||
5067 | /** |
||
5068 | * Finds position of first occurrence of a string within another, case insensitive. |
||
5069 | * |
||
5070 | * @link http://php.net/manual/en/function.mb-stripos.php |
||
5071 | * |
||
5072 | * @param string $haystack <p> |
||
5073 | * The string from which to get the position of the first occurrence |
||
5074 | * of needle |
||
5075 | * </p> |
||
5076 | * @param string $needle <p> |
||
5077 | * The string to find in haystack |
||
5078 | * </p> |
||
5079 | * @param int $offset [optional] <p> |
||
5080 | * The position in haystack |
||
5081 | * to start searching |
||
5082 | * </p> |
||
5083 | * @param string $encoding |
||
5084 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
5085 | * |
||
5086 | * @return int Return the numeric position of the first occurrence of |
||
5087 | * needle in the haystack |
||
5088 | * string, or false if needle is not found. |
||
5089 | */ |
||
5090 | public static function stripos($haystack, $needle, $offset = null, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
5114 | 10 | ||
5115 | /** |
||
5116 | * Returns all of haystack starting from and including the first occurrence of needle to the end. |
||
5117 | * |
||
5118 | 10 | * @param string $str |
|
5119 | * @param string $needle |
||
5120 | * @param bool $before_needle |
||
5121 | * |
||
5122 | 10 | * @return false|string |
|
5123 | */ |
||
5124 | public static function stristr($str, $needle, $before_needle = false) |
||
5135 | 1 | ||
5136 | /** |
||
5137 | 10 | * Get the string length, not the byte-length! |
|
5138 | * |
||
5139 | * @link http://php.net/manual/en/function.mb-strlen.php |
||
5140 | * |
||
5141 | * @param string $str The string being checked for length. |
||
5142 | * @param string $encoding Set the charset for e.g. "\mb_" function |
||
5143 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
5144 | * |
||
5145 | * @return int the number of characters in |
||
5146 | * string str having character encoding |
||
5147 | * encoding. A multi-byte character is |
||
5148 | * counted as 1. |
||
5149 | */ |
||
5150 | public static function strlen($str, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
5179 | |||
5180 | /** |
||
5181 | * Case insensitive string comparisons using a "natural order" algorithm. |
||
5182 | * |
||
5183 | * @param string $str1 |
||
5184 | * @param string $str2 |
||
5185 | * |
||
5186 | 1 | * @return int <strong>< 0</strong> if str1 is less than str2<br /> |
|
5187 | * <strong>> 0</strong> if str1 is greater than str2<br /> |
||
5188 | 1 | * <strong>0</strong> if they are equal |
|
5189 | */ |
||
5190 | 1 | public static function strnatcasecmp($str1, $str2) |
|
5194 | |||
5195 | /** |
||
5196 | * String comparisons using a "natural order" algorithm |
||
5197 | * |
||
5198 | * @link http://php.net/manual/en/function.strnatcmp.php |
||
5199 | * |
||
5200 | 4 | * @param string $str1 <p> |
|
5201 | * The first string. |
||
5202 | 4 | * </p> |
|
5203 | * @param string $str2 <p> |
||
5204 | * The second string. |
||
5205 | * </p> |
||
5206 | * |
||
5207 | * @return int Similar to other string comparison functions, this one returns < 0 if |
||
5208 | * str1 is less than str2; > |
||
5209 | * 0 if str1 is greater than |
||
5210 | * str2, and 0 if they are equal. |
||
5211 | * @since 4.0 |
||
5212 | * @since 5.0 |
||
5213 | */ |
||
5214 | public static function strnatcmp($str1, $str2) |
||
5218 | |||
5219 | /** |
||
5220 | * Binary safe case-insensitive string comparison of the first n characters |
||
5221 | * |
||
5222 | * @link http://php.net/manual/en/function.strncasecmp.php |
||
5223 | * |
||
5224 | * @param string $str1 <p> |
||
5225 | * The first string. |
||
5226 | * </p> |
||
5227 | * @param string $str2 <p> |
||
5228 | * The second string. |
||
5229 | * </p> |
||
5230 | * @param int $len <p> |
||
5231 | * The length of strings to be used in the comparison. |
||
5232 | * </p> |
||
5233 | 1 | * |
|
5234 | * @return int < 0 if <i>str1</i> is less than |
||
5235 | 1 | * <i>str2</i>; > 0 if <i>str1</i> is |
|
5236 | * greater than <i>str2</i>, and 0 if they are equal. |
||
5237 | 1 | * @since 4.0.4 |
|
5238 | * @since 5.0 |
||
5239 | */ |
||
5240 | public static function strncasecmp($str1, $str2, $len) |
||
5244 | |||
5245 | /** |
||
5246 | * Binary safe string comparison of the first n characters |
||
5247 | * |
||
5248 | * @link http://php.net/manual/en/function.strncmp.php |
||
5249 | 1 | * |
|
5250 | * @param string $str1 <p> |
||
5251 | 1 | * The first string. |
|
5252 | * </p> |
||
5253 | * @param string $str2 <p> |
||
5254 | * The second string. |
||
5255 | * </p> |
||
5256 | * @param int $len <p> |
||
5257 | * Number of characters to use in the comparison. |
||
5258 | * </p> |
||
5259 | * |
||
5260 | * @return int < 0 if <i>str1</i> is less than |
||
5261 | * <i>str2</i>; > 0 if <i>str1</i> |
||
5262 | * is greater than <i>str2</i>, and 0 if they are |
||
5263 | * equal. |
||
5264 | * @since 4.0 |
||
5265 | * @since 5.0 |
||
5266 | */ |
||
5267 | public static function strncmp($str1, $str2, $len) |
||
5271 | |||
5272 | /** |
||
5273 | * Search a string for any of a set of characters |
||
5274 | * |
||
5275 | * @link http://php.net/manual/en/function.strpbrk.php |
||
5276 | 10 | * |
|
5277 | * @param string $haystack <p> |
||
5278 | 10 | * The string where char_list is looked for. |
|
5279 | 10 | * </p> |
|
5280 | * @param string $char_list <p> |
||
5281 | 10 | * This parameter is case sensitive. |
|
5282 | 2 | * </p> |
|
5283 | * |
||
5284 | * @return string a string starting from the character found, or false if it is |
||
5285 | * not found. |
||
5286 | 9 | * @since 5.0 |
|
5287 | */ |
||
5288 | 9 | public static function strpbrk($haystack, $char_list) |
|
5303 | 9 | ||
5304 | /** |
||
5305 | * Find position of first occurrence of string in a string. |
||
5306 | * |
||
5307 | * @link http://php.net/manual/en/function.mb-strpos.php |
||
5308 | * |
||
5309 | * @param string $haystack <p> |
||
5310 | * The string being checked. |
||
5311 | * </p> |
||
5312 | * @param string $needle <p> |
||
5313 | * The position counted from the beginning of haystack. |
||
5314 | * </p> |
||
5315 | * @param int $offset [optional] <p> |
||
5316 | * The search offset. If it is not specified, 0 is used. |
||
5317 | * </p> |
||
5318 | * @param string $encoding |
||
5319 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string. |
||
5320 | * |
||
5321 | * @return int The numeric position of the first occurrence of needle in the haystack string.<br /> |
||
5322 | * If needle is not found it returns false. |
||
5323 | */ |
||
5324 | public static function strpos($haystack, $needle, $offset = 0, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
5380 | |||
5381 | /** |
||
5382 | * Finds the last occurrence of a character in a string within another. |
||
5383 | 10 | * |
|
5384 | * @link http://php.net/manual/en/function.mb-strrchr.php |
||
5385 | 10 | * |
|
5386 | 10 | * @param string $haystack <p> |
|
5387 | 10 | * The string from which to get the last occurrence |
|
5388 | * of needle |
||
5389 | 10 | * </p> |
|
5390 | 1 | * @param string $needle <p> |
|
5391 | 1 | * The string to find in haystack |
|
5392 | 1 | * </p> |
|
5393 | * @param bool $part [optional] <p> |
||
5394 | 10 | * Determines which portion of haystack |
|
5395 | * this function returns. |
||
5396 | 10 | * If set to true, it returns all of haystack |
|
5397 | * from the beginning to the last occurrence of needle. |
||
5398 | 10 | * If set to false, it returns all of haystack |
|
5399 | 1 | * from the last occurrence of needle to the end, |
|
5400 | 1 | * </p> |
|
5401 | * @param string $encoding [optional] <p> |
||
5402 | * Character encoding name to use. |
||
5403 | 10 | * If it is omitted, internal character encoding is used. |
|
5404 | 10 | * </p> |
|
5405 | * |
||
5406 | 10 | * @return string the portion of haystack. |
|
5407 | * or false if needle is not found. |
||
5408 | 10 | */ |
|
5409 | public static function strrchr($haystack, $needle, $part = false, $encoding = 'UTF-8') |
||
5415 | |||
5416 | /** |
||
5417 | * Reverses characters order in the string. |
||
5418 | * |
||
5419 | * @param string $str The input string |
||
5420 | * |
||
5421 | * @return string The string with characters in the reverse sequence |
||
5422 | */ |
||
5423 | public static function strrev($str) |
||
5427 | |||
5428 | 20 | /** |
|
5429 | 5 | * Finds the last occurrence of a character in a string within another, case insensitive. |
|
5430 | * |
||
5431 | * @link http://php.net/manual/en/function.mb-strrichr.php |
||
5432 | * |
||
5433 | 18 | * @param string $haystack <p> |
|
5434 | * The string from which to get the last occurrence |
||
5435 | 18 | * of needle |
|
5436 | * </p> |
||
5437 | * @param string $needle <p> |
||
5438 | * The string to find in haystack |
||
5439 | * </p> |
||
5440 | * @param bool $part [optional] <p> |
||
5441 | * Determines which portion of haystack |
||
5442 | * this function returns. |
||
5443 | * If set to true, it returns all of haystack |
||
5444 | * from the beginning to the last occurrence of needle. |
||
5445 | 3 | * If set to false, it returns all of haystack |
|
5446 | * from the last occurrence of needle to the end, |
||
5447 | 3 | * </p> |
|
5448 | * @param string $encoding [optional] <p> |
||
5449 | * Character encoding name to use. |
||
5450 | * If it is omitted, internal character encoding is used. |
||
5451 | * </p> |
||
5452 | * |
||
5453 | * @return string the portion of haystack. |
||
5454 | * or false if needle is not found. |
||
5455 | */ |
||
5456 | public static function strrichr($haystack, $needle, $part = false, $encoding = 'UTF-8') |
||
5462 | 16 | ||
5463 | /** |
||
5464 | 16 | * Find position of last occurrence of a case-insensitive string. |
|
5465 | * |
||
5466 | 16 | * @param string $haystack The string to look in |
|
5467 | 4 | * @param string $needle The string to look for |
|
5468 | * @param int $offset (Optional) Number of characters to ignore in the beginning or end |
||
5469 | * |
||
5470 | * @return int The position of offset |
||
5471 | 15 | */ |
|
5472 | public static function strripos($haystack, $needle, $offset = 0) |
||
5476 | |||
5477 | /** |
||
5478 | * Find position of last occurrence of a string in a string. |
||
5479 | * |
||
5480 | * @link http://php.net/manual/en/function.mb-strrpos.php |
||
5481 | * |
||
5482 | * @param string $haystack <p> |
||
5483 | * The string being checked, for the last occurrence |
||
5484 | * of needle |
||
5485 | * </p> |
||
5486 | * @param string|int $needle <p> |
||
5487 | * The string to find in haystack. |
||
5488 | * Or a code point as int. |
||
5489 | * </p> |
||
5490 | * @param int $offset [optional] May be specified to begin searching an arbitrary number of characters into |
||
5491 | * the string. Negative values will stop searching at an arbitrary point |
||
5492 | * prior to the end of the string. |
||
5493 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
5494 | * |
||
5495 | * @return int the numeric position of |
||
5496 | * the last occurrence of needle in the |
||
5497 | * haystack string. If |
||
5498 | * needle is not found, it returns false. |
||
5499 | */ |
||
5500 | public static function strrpos($haystack, $needle, $offset = null, $cleanUtf8 = false) |
||
5552 | |||
5553 | /** |
||
5554 | * Finds the length of the initial segment of a string consisting entirely of characters contained within a given |
||
5555 | * mask. |
||
5556 | * |
||
5557 | * @param string $str |
||
5558 | 39 | * @param string $mask |
|
5559 | * @param int $offset |
||
5560 | 39 | * @param int $length |
|
5561 | * |
||
5562 | 39 | * @return int|null |
|
5563 | 9 | */ |
|
5564 | public static function strspn($str, $mask, $offset = 0, $length = 2147483647) |
||
5572 | |||
5573 | 1 | /** |
|
5574 | 1 | * Returns part of haystack string from the first occurrence of needle to the end of haystack. |
|
5575 | * |
||
5576 | 37 | * @link http://php.net/manual/en/function.grapheme-strstr.php |
|
5577 | 22 | * |
|
5578 | 22 | * @param string $haystack <p> |
|
5579 | 33 | * The input string. Must be valid UTF-8. |
|
5580 | * </p> |
||
5581 | * @param string $needle <p> |
||
5582 | 37 | * The string to look for. Must be valid UTF-8. |
|
5583 | * </p> |
||
5584 | * @param bool $before_needle [optional] <p> |
||
5585 | 37 | * If <b>TRUE</b>, grapheme_strstr() returns the part of the |
|
5586 | 1 | * haystack before the first occurrence of the needle (excluding the needle). |
|
5587 | 1 | * </p> |
|
5588 | * |
||
5589 | 37 | * @return string the portion of string, or FALSE if needle is not found. |
|
5590 | */ |
||
5591 | public static function strstr($haystack, $needle, $before_needle = false) |
||
5597 | |||
5598 | /** |
||
5599 | * Unicode transformation for case-less matching. |
||
5600 | * |
||
5601 | * @link http://unicode.org/reports/tr21/tr21-5.html |
||
5602 | * |
||
5603 | * @param string $str |
||
5604 | * @param bool $full |
||
5605 | * |
||
5606 | * @return string |
||
5607 | */ |
||
5608 | public static function strtocasefold($str, $full = true) |
||
5635 | |||
5636 | /** |
||
5637 | * (PHP 4 >= 4.3.0, PHP 5)<br/> |
||
5638 | * Make a string lowercase. |
||
5639 | * |
||
5640 | * @link http://php.net/manual/en/function.mb-strtolower.php |
||
5641 | * |
||
5642 | * @param string $str <p> |
||
5643 | * The string being lowercased. |
||
5644 | * </p> |
||
5645 | * @param string $encoding |
||
5646 | * |
||
5647 | * @return string str with all alphabetic characters converted to lowercase. |
||
5648 | */ |
||
5649 | public static function strtolower($str, $encoding = 'UTF-8') |
||
5662 | |||
5663 | /** |
||
5664 | * Generic case sensitive transformation for collation matching. |
||
5665 | 6 | * |
|
5666 | * @param string $s |
||
5667 | * |
||
5668 | 6 | * @return string |
|
5669 | 1 | */ |
|
5670 | protected static function strtonatfold($s) |
||
5674 | 1 | ||
5675 | 1 | /** |
|
5676 | * Make a string uppercase. |
||
5677 | * |
||
5678 | * @link http://php.net/manual/en/function.mb-strtoupper.php |
||
5679 | 1 | * |
|
5680 | 1 | * @param string $str <p> |
|
5681 | 1 | * The string being uppercased. |
|
5682 | 1 | * </p> |
|
5683 | 1 | * @param string $encoding |
|
5684 | 1 | * |
|
5685 | 1 | * @return string str with all alphabetic characters converted to uppercase. |
|
5686 | 1 | */ |
|
5687 | public static function strtoupper($str, $encoding = 'UTF-8') |
||
5718 | 6 | ||
5719 | 6 | /** |
|
5720 | * Translate characters or replace sub-strings. |
||
5721 | 6 | * |
|
5722 | 4 | * @link http://php.net/manual/en/function.strtr.php |
|
5723 | * |
||
5724 | 4 | * @param string $str <p> |
|
5725 | 4 | * The string being translated. |
|
5726 | * </p> |
||
5727 | 6 | * @param string|array $from <p> |
|
5728 | * The string replacing from. |
||
5729 | 6 | * </p> |
|
5730 | * @param string|array $to <p> |
||
5731 | * The string being translated to to. |
||
5732 | * </p> |
||
5733 | * |
||
5734 | * @return string This function returns a copy of str, |
||
5735 | * translating all occurrences of each character in |
||
5736 | * from to the corresponding character in |
||
5737 | * to. |
||
5738 | * @since 4.0 |
||
5739 | * @since 5.0 |
||
5740 | 1 | */ |
|
5741 | public static function strtr($str, $from, $to = INF) |
||
5760 | 1 | ||
5761 | /** |
||
5762 | 1 | * Return the width of a string. |
|
5763 | * |
||
5764 | 1 | * @param string $s |
|
5765 | * |
||
5766 | * @return int |
||
5767 | */ |
||
5768 | public static function strwidth($s) |
||
5775 | 6 | ||
5776 | /** |
||
5777 | 6 | * Get part of a string. |
|
5778 | * |
||
5779 | * @link http://php.net/manual/en/function.mb-substr.php |
||
5780 | * |
||
5781 | * @param string $str <p> |
||
5782 | * The string being checked. |
||
5783 | * </p> |
||
5784 | * @param int $start <p> |
||
5785 | * The first position used in str. |
||
5786 | * </p> |
||
5787 | * @param int $length [optional] <p> |
||
5788 | * The maximum length of the returned string. |
||
5789 | * </p> |
||
5790 | * @param string $encoding |
||
5791 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
5792 | * |
||
5793 | * @return string mb_substr returns the portion of |
||
5794 | * str specified by the start and length parameters. |
||
5795 | */ |
||
5796 | public static function substr($str, $start = 0, $length = null, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
5842 | |||
5843 | /** |
||
5844 | * Binary safe comparison of two strings from an offset, up to length characters. |
||
5845 | * |
||
5846 | * @param string $main_str The main string being compared. |
||
5847 | * @param string $str The secondary string being compared. |
||
5848 | * @param int $offset The start position for the comparison. If negative, it starts counting from the |
||
5849 | * end of the string. |
||
5850 | * @param int $length The length of the comparison. The default value is the largest of the length of |
||
5851 | * the str compared to the length of main_str less the offset. |
||
5852 | 3 | * @param boolean $case_insensitivity If case_insensitivity is TRUE, comparison is case insensitive. |
|
5853 | * |
||
5854 | 1 | * @return int |
|
5855 | 1 | */ |
|
5856 | 1 | public static function substr_compare($main_str, $str, $offset, $length = 2147483647, $case_insensitivity = false) |
|
5863 | 1 | ||
5864 | /** |
||
5865 | * Count the number of substring occurrences |
||
5866 | 1 | * |
|
5867 | * @link http://php.net/manual/en/function.substr-count.php |
||
5868 | * |
||
5869 | 1 | * @param string $haystack <p> |
|
5870 | * The string to search in |
||
5871 | 3 | * </p> |
|
5872 | 1 | * @param string $needle <p> |
|
5873 | 1 | * The substring to search for |
|
5874 | * </p> |
||
5875 | 3 | * @param int $offset [optional] <p> |
|
5876 | 3 | * The offset where to start counting |
|
5877 | * </p> |
||
5878 | 3 | * @param int $length [optional] <p> |
|
5879 | 3 | * The maximum length after the specified offset to search for the |
|
5880 | * substring. It outputs a warning if the offset plus the length is |
||
5881 | 6 | * greater than the haystack length. |
|
5882 | * </p> |
||
5883 | * |
||
5884 | * @return int This functions returns an integer. |
||
5885 | * @since 4.0 |
||
5886 | * @since 5.0 |
||
5887 | */ |
||
5888 | public static function substr_count($haystack, $needle, $offset = 0, $length = null) |
||
5908 | |||
5909 | /** |
||
5910 | * Replace text within a portion of a string. |
||
5911 | * |
||
5912 | * source: https://gist.github.com/stemar/8287074 |
||
5913 | * |
||
5914 | * @param string|array $str |
||
5915 | * @param string|array $replacement |
||
5916 | * @param int|array $start |
||
5917 | * @param null|int|array $length |
||
5918 | * |
||
5919 | * @return array|string |
||
5920 | */ |
||
5921 | public static function substr_replace($str, $replacement, $start, $length = null) |
||
5986 | 6 | ||
5987 | 6 | /** |
|
5988 | 6 | * Returns a case swapped version of the string. |
|
5989 | * |
||
5990 | * @param string $str |
||
5991 | 9 | * @param string $encoding |
|
5992 | 6 | * |
|
5993 | 6 | * @return string each character's case swapped |
|
5994 | 6 | */ |
|
5995 | public static function swapCase($str, $encoding = 'UTF-8') |
||
6021 | |||
6022 | 20 | /** |
|
6023 | * alias for "UTF8::to_ascii()" |
||
6024 | * |
||
6025 | 20 | * @param string $s The input string e.g. a UTF-8 String |
|
6026 | 20 | * @param string $subst_chr |
|
6027 | 20 | * |
|
6028 | 2 | * @return string |
|
6029 | 20 | */ |
|
6030 | public static function toAscii($s, $subst_chr = '?') |
||
6034 | |||
6035 | /** |
||
6036 | * alias for "UTF8::to_latin1()" |
||
6037 | * |
||
6038 | * @param $str |
||
6039 | * |
||
6040 | * @return string |
||
6041 | */ |
||
6042 | public static function toLatin1($str) |
||
6046 | |||
6047 | 1 | /** |
|
6048 | * alias for "UTF8::to_utf8" |
||
6049 | 1 | * |
|
6050 | 1 | * @param string $str |
|
6051 | * |
||
6052 | 1 | * @return string |
|
6053 | 2 | */ |
|
6054 | 2 | public static function toUTF8($str) |
|
6058 | |||
6059 | /** |
||
6060 | * convert to ASCII |
||
6061 | * |
||
6062 | * @param string $s The input string e.g. a UTF-8 String |
||
6063 | * @param string $subst_chr |
||
6064 | * |
||
6065 | * @return string |
||
6066 | */ |
||
6067 | public static function to_ascii($s, $subst_chr = '?') |
||
6138 | |||
6139 | 7 | /** |
|
6140 | * alias for "UTF8::to_win1252()" |
||
6141 | * |
||
6142 | * @param string $str |
||
6143 | 1 | * |
|
6144 | 1 | * @return array|string |
|
6145 | 1 | */ |
|
6146 | 7 | public static function to_iso8859($str) |
|
6150 | 7 | ||
6151 | /** |
||
6152 | 7 | * alias for "UTF8::to_win1252()" |
|
6153 | * |
||
6154 | * @param string|array $str |
||
6155 | * |
||
6156 | * @return string|array |
||
6157 | */ |
||
6158 | public static function to_latin1($str) |
||
6162 | |||
6163 | /** |
||
6164 | * This function leaves UTF8 characters alone, while converting almost all non-UTF8 to UTF8. |
||
6165 | * |
||
6166 | * - It assumes that the encoding of the original string is either WINDOWS-1252 or ISO-8859-1. |
||
6167 | * |
||
6168 | * - It may fail to convert characters to UTF-8 if they fall into one of these scenarios: |
||
6169 | * |
||
6170 | * 1) when any of these characters: ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞß |
||
6171 | * are followed by any of these: ("group B") |
||
6172 | 1 | * ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶•¸¹º»¼½¾¿ |
|
6173 | * For example: %ABREPRESENT%C9%BB. «REPRESENTÉ» |
||
6174 | 1 | * The "«" (%AB) character will be converted, but the "É" followed by "»" (%C9%BB) |
|
6175 | * is also a valid unicode character, and will be left unchanged. |
||
6176 | 1 | * |
|
6177 | 1 | * 2) when any of these: àáâãäåæçèéêëìíîï are followed by TWO chars from group B, |
|
6178 | * 3) when any of these: ðñòó are followed by THREE chars from group B. |
||
6179 | * |
||
6180 | 1 | * @param string|array $str Any string or array. |
|
6181 | * |
||
6182 | 1 | * @return string The same string, but UTF8 encoded. |
|
6183 | */ |
||
6184 | 1 | public static function to_utf8($str) |
|
6290 | |||
6291 | /** |
||
6292 | * Convert a string into "win1252"-encoding. |
||
6293 | * |
||
6294 | * @param string|array $str |
||
6295 | * |
||
6296 | * @return string|array |
||
6297 | */ |
||
6298 | protected static function to_win1252($str) |
||
6318 | |||
6319 | /** |
||
6320 | * Strip whitespace or other characters from beginning or end of a UTF-8 string. |
||
6321 | * |
||
6322 | * INFO: This is slower then "trim()" |
||
6323 | * |
||
6324 | * But we can only use the original-function, if we use <= 7-Bit in the string / chars |
||
6325 | * but the check for ACSII (7-Bit) cost more time, then we can safe here. |
||
6326 | * |
||
6327 | * @param string $str The string to be trimmed |
||
6328 | * @param string $chars Optional characters to be stripped |
||
6329 | * |
||
6330 | * @return string The trimmed string |
||
6331 | */ |
||
6332 | public static function trim($str = '', $chars = INF) |
||
6347 | |||
6348 | /** |
||
6349 | * Makes string's first char uppercase. |
||
6350 | * |
||
6351 | * @param string $str The input string |
||
6352 | * |
||
6353 | * @return string The resulting string |
||
6354 | */ |
||
6355 | public static function ucfirst($str) |
||
6359 | |||
6360 | /** |
||
6361 | * alias for "UTF8::ucfirst" |
||
6362 | * |
||
6363 | * @param $str |
||
6364 | * |
||
6365 | * @return string |
||
6366 | */ |
||
6367 | public static function ucword($str) |
||
6371 | |||
6372 | /** |
||
6373 | * Uppercase for all words in the string. |
||
6374 | * |
||
6375 | * @param string $str |
||
6376 | * @param array $exceptions |
||
6377 | * |
||
6378 | * @return string |
||
6379 | */ |
||
6380 | public static function ucwords($str, $exceptions = array()) |
||
6413 | |||
6414 | /** |
||
6415 | * Multi decode html entity & fix urlencoded-win1252-chars. |
||
6416 | * |
||
6417 | * e.g: |
||
6418 | * 'Düsseldorf' => 'Düsseldorf' |
||
6419 | * 'D%FCsseldorf' => 'Düsseldorf' |
||
6420 | * 'Düsseldorf' => 'Düsseldorf' |
||
6421 | * 'D%26%23xFC%3Bsseldorf' => 'Düsseldorf' |
||
6422 | * 'Düsseldorf' => 'Düsseldorf' |
||
6423 | * 'D%C3%BCsseldorf' => 'Düsseldorf' |
||
6424 | * 'D%C3%83%C2%BCsseldorf' => 'Düsseldorf' |
||
6425 | * 'D%25C3%2583%25C2%25BCsseldorf' => 'Düsseldorf' |
||
6426 | * |
||
6427 | * @param string $str |
||
6428 | * |
||
6429 | * @return string |
||
6430 | */ |
||
6431 | public static function urldecode($str) |
||
6454 | 6 | ||
6455 | /** |
||
6456 | 6 | * Return a array with "urlencoded"-win1252 -> UTF-8 |
|
6457 | 1 | * |
|
6458 | 1 | * @return mixed |
|
6459 | 1 | */ |
|
6460 | public static function urldecode_fix_win1252_chars() |
||
6691 | |||
6692 | /** |
||
6693 | * Decodes an UTF-8 string to ISO-8859-1. |
||
6694 | * |
||
6695 | * @param string $str |
||
6696 | * |
||
6697 | * @return string |
||
6698 | */ |
||
6699 | public static function utf8_decode($str) |
||
6722 | |||
6723 | /** |
||
6724 | * Encodes an ISO-8859-1 string to UTF-8. |
||
6725 | * |
||
6726 | * @param string $str |
||
6727 | * |
||
6728 | * @return string |
||
6729 | */ |
||
6730 | public static function utf8_encode($str) |
||
6749 | |||
6750 | /** |
||
6751 | * fix -> utf8-win1252 chars |
||
6752 | * |
||
6753 | * If you received an UTF-8 string that was converted from Windows-1252 as it was ISO-8859-1 |
||
6754 | * (ignoring Windows-1252 chars from 80 to 9F) use this function to fix it. |
||
6755 | * See: http://en.wikipedia.org/wiki/Windows-1252 |
||
6756 | * |
||
6757 | * @deprecated use "UTF8::fix_simple_utf8()" |
||
6758 | * |
||
6759 | * @param string $str |
||
6760 | * |
||
6761 | * @return string |
||
6762 | */ |
||
6763 | public static function utf8_fix_win1252_chars($str) |
||
6767 | |||
6768 | /** |
||
6769 | * Returns an array with all utf8 whitespace characters. |
||
6770 | * |
||
6771 | * @see : http://www.bogofilter.org/pipermail/bogofilter/2003-March/001889.html |
||
6772 | * |
||
6773 | * @author: Derek E. [email protected] |
||
6774 | * |
||
6775 | * @return array an array with all known whitespace characters as values and the type of whitespace as keys |
||
6776 | * as defined in above URL |
||
6777 | */ |
||
6778 | public static function whitespace_table() |
||
6782 | |||
6783 | /** |
||
6784 | * Limit the number of words in a string. |
||
6785 | * |
||
6786 | * @param string $str |
||
6787 | * @param int $words |
||
6788 | * @param string $strAddOn |
||
6789 | * |
||
6790 | * @return string |
||
6791 | */ |
||
6792 | public static function words_limit($str, $words = 100, $strAddOn = '...') |
||
6818 | |||
6819 | /** |
||
6820 | * Wraps a string to a given number of characters |
||
6821 | * |
||
6822 | * @link http://php.net/manual/en/function.wordwrap.php |
||
6823 | * |
||
6824 | * @param string $str <p> |
||
6825 | * The input string. |
||
6826 | * </p> |
||
6827 | * @param int $width [optional] <p> |
||
6828 | * The column width. |
||
6829 | * </p> |
||
6830 | * @param string $break [optional] <p> |
||
6831 | * The line is broken using the optional |
||
6832 | * break parameter. |
||
6833 | * </p> |
||
6834 | * @param bool $cut [optional] <p> |
||
6835 | * If the cut is set to true, the string is |
||
6836 | * always wrapped at or before the specified width. So if you have |
||
6837 | * a word that is larger than the given width, it is broken apart. |
||
6838 | * (See second example). |
||
6839 | * </p> |
||
6840 | * |
||
6841 | * @return string the given string wrapped at the specified column. |
||
6842 | * @since 4.0.2 |
||
6843 | * @since 5.0 |
||
6844 | */ |
||
6845 | public static function wordwrap($str, $width = 75, $break = "\n", $cut = false) |
||
6900 | |||
6901 | /** |
||
6902 | * Returns an array of Unicode White Space characters. |
||
6903 | * |
||
6904 | * @return array An array with numeric code point as key and White Space Character as value. |
||
6905 | */ |
||
6906 | public static function ws() |
||
6910 | |||
6911 | } |
||
6912 |
In PHP, under loose comparison (like
==
, or!=
, orswitch
conditions), values of different types might be equal.For
string
values, the empty string''
is a special case, in particular the following results might be unexpected: