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() |
||
| 1870 | 157 | ||
| 1871 | /** |
||
| 1872 | * Generates a UTF-8 encoded character from the given code point. |
||
| 1873 | * |
||
| 1874 | * @param int $code_point The code point for which to generate a character. |
||
| 1875 | * |
||
| 1876 | * @return string Multi-Byte character, returns empty string on failure to encode. |
||
| 1877 | */ |
||
| 1878 | public static function chr($code_point) |
||
| 1894 | |||
| 1895 | /** |
||
| 1896 | * Applies callback to all characters of a string. |
||
| 1897 | * |
||
| 1898 | * @param string $callback The callback function. |
||
| 1899 | * @param string $str UTF-8 string to run callback on. |
||
| 1900 | * |
||
| 1901 | * @return array The outcome of callback. |
||
| 1902 | 1 | */ |
|
| 1903 | |||
| 1904 | 1 | public static function chr_map($callback, $str) |
|
| 1910 | |||
| 1911 | /** |
||
| 1912 | * Generates an array of byte length of each character of a Unicode string. |
||
| 1913 | * |
||
| 1914 | * 1 byte => U+0000 - U+007F |
||
| 1915 | * 2 byte => U+0080 - U+07FF |
||
| 1916 | * 3 byte => U+0800 - U+FFFF |
||
| 1917 | * 4 byte => U+10000 - U+10FFFF |
||
| 1918 | * |
||
| 1919 | * @param string $str The original Unicode string. |
||
| 1920 | * |
||
| 1921 | 2 | * @return array An array of byte lengths of each character. |
|
| 1922 | */ |
||
| 1923 | 2 | public static function chr_size_list($str) |
|
| 1931 | |||
| 1932 | /** |
||
| 1933 | * Get a decimal code representation of a specific character. |
||
| 1934 | * |
||
| 1935 | * @param string $chr The input character |
||
| 1936 | * |
||
| 1937 | 2 | * @return int |
|
| 1938 | */ |
||
| 1939 | 2 | public static function chr_to_decimal($chr) |
|
| 1971 | |||
| 1972 | /** |
||
| 1973 | * Get hexadecimal code point (U+xxxx) of a UTF-8 encoded character. |
||
| 1974 | * |
||
| 1975 | * @param string $chr The input character |
||
| 1976 | * @param string $pfix |
||
| 1977 | * |
||
| 1978 | * @return string The code point encoded as U+xxxx |
||
| 1979 | */ |
||
| 1980 | public static function chr_to_hex($chr, $pfix = 'U+') |
||
| 1984 | |||
| 1985 | /** |
||
| 1986 | * Splits a string into smaller chunks and multiple lines, using the specified |
||
| 1987 | * line ending character. |
||
| 1988 | * |
||
| 1989 | * @param string $body The original string to be split. |
||
| 1990 | * @param int $chunklen The maximum character length of a chunk. |
||
| 1991 | * @param string $end The character(s) to be inserted at the end of each chunk. |
||
| 1992 | * |
||
| 1993 | 1 | * @return string The chunked string |
|
| 1994 | */ |
||
| 1995 | 1 | public static function chunk_split($body, $chunklen = 76, $end = "\r\n") |
|
| 1999 | |||
| 2000 | /** |
||
| 2001 | * accepts a string and removes all non-UTF-8 characters from it. |
||
| 2002 | * |
||
| 2003 | * @param string $str The string to be sanitized. |
||
| 2004 | * @param bool $remove_bom |
||
| 2005 | * @param bool $normalize_whitespace |
||
| 2006 | * @param bool $normalize_msword e.g.: "…" => "..." |
||
| 2007 | * @param bool $keep_non_breaking_space set true, to keep non-breaking-spaces |
||
| 2008 | * |
||
| 2009 | 35 | * @return string Clean UTF-8 encoded string |
|
| 2010 | */ |
||
| 2011 | public static function clean($str, $remove_bom = false, $normalize_whitespace = false, $normalize_msword = false, $keep_non_breaking_space = false) |
||
| 2046 | |||
| 2047 | /** |
||
| 2048 | * Clean-up a and show only printable UTF-8 chars at the end. |
||
| 2049 | * |
||
| 2050 | * @param string $str |
||
| 2051 | * |
||
| 2052 | 3 | * @return string |
|
| 2053 | */ |
||
| 2054 | 3 | public static function cleanup($str) |
|
| 2074 | |||
| 2075 | /** |
||
| 2076 | * Accepts a string and returns an array of Unicode code points. |
||
| 2077 | * |
||
| 2078 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
||
| 2079 | * @param bool $u_style If True, will return code points in U+xxxx format, |
||
| 2080 | * default, code points will be returned as integers. |
||
| 2081 | * |
||
| 2082 | 3 | * @return array The array of code points |
|
| 2083 | */ |
||
| 2084 | 3 | public static function codepoints($arg, $u_style = false) |
|
| 2110 | |||
| 2111 | /** |
||
| 2112 | * Returns count of characters used in a string. |
||
| 2113 | * |
||
| 2114 | * @param string $str The input string. |
||
| 2115 | * |
||
| 2116 | * @return array An associative array of Character as keys and |
||
| 2117 | 3 | * their count as values. |
|
| 2118 | */ |
||
| 2119 | 3 | public static function count_chars($str) // there is no $mode parameters |
|
| 2127 | |||
| 2128 | /** |
||
| 2129 | * Get a UTF-8 character from its decimal code representation. |
||
| 2130 | * |
||
| 2131 | * @param int $code Code. |
||
| 2132 | * |
||
| 2133 | 1 | * @return string |
|
| 2134 | */ |
||
| 2135 | 1 | public static function decimal_to_chr($code) |
|
| 2145 | |||
| 2146 | /** |
||
| 2147 | * encode a string |
||
| 2148 | * |
||
| 2149 | * INFO: The different to "UTF8::utf8_encode()" is that this function, try to fix also broken / double encoding, |
||
| 2150 | * so you can call this function also on a UTF-8 String and you don't mess the string. |
||
| 2151 | * |
||
| 2152 | * @param string $encoding e.g. 'UTF-8', 'ISO-8859-1', etc. |
||
| 2153 | * @param string $str the string |
||
| 2154 | * @param bool $force force the new encoding (we try to fix broken / double encoding for UTF-8)<br /> |
||
| 2155 | 11 | * otherwise we auto-detect the current string-encoding |
|
| 2156 | * |
||
| 2157 | 11 | * @return string |
|
| 2158 | */ |
||
| 2159 | 11 | public static function encode($encoding, $str, $force = true) |
|
| 2220 | |||
| 2221 | /** |
||
| 2222 | * Callback function for preg_replace_callback use. |
||
| 2223 | * |
||
| 2224 | * @param array $matches PREG matches |
||
| 2225 | * |
||
| 2226 | * @return string |
||
| 2227 | */ |
||
| 2228 | protected static function entityCallback($matches) |
||
| 2240 | |||
| 2241 | /** |
||
| 2242 | * Reads entire file into a string. |
||
| 2243 | * |
||
| 2244 | * WARNING: do not use UTF-8 Option fir binary-files (e.g.: images) !!! |
||
| 2245 | * |
||
| 2246 | * @link http://php.net/manual/en/function.file-get-contents.php |
||
| 2247 | * |
||
| 2248 | * @param string $filename <p> |
||
| 2249 | * Name of the file to read. |
||
| 2250 | * </p> |
||
| 2251 | * @param int $flags [optional] <p> |
||
| 2252 | 2 | * Prior to PHP 6, this parameter is called |
|
| 2253 | * use_include_path and is a bool. |
||
| 2254 | * As of PHP 5 the FILE_USE_INCLUDE_PATH can be used |
||
| 2255 | 2 | * to trigger include path |
|
| 2256 | 2 | * search. |
|
| 2257 | * </p> |
||
| 2258 | 2 | * <p> |
|
| 2259 | 2 | * The value of flags can be any combination of |
|
| 2260 | * the following flags (with some restrictions), joined with the |
||
| 2261 | * binary OR (|) |
||
| 2262 | * operator. |
||
| 2263 | 2 | * </p> |
|
| 2264 | 2 | * <p> |
|
| 2265 | * <table> |
||
| 2266 | 2 | * Available flags |
|
| 2267 | 2 | * <tr valign="top"> |
|
| 2268 | * <td>Flag</td> |
||
| 2269 | 2 | * <td>Description</td> |
|
| 2270 | 1 | * </tr> |
|
| 2271 | 1 | * <tr valign="top"> |
|
| 2272 | 2 | * <td> |
|
| 2273 | * FILE_USE_INCLUDE_PATH |
||
| 2274 | * </td> |
||
| 2275 | * <td> |
||
| 2276 | 2 | * Search for filename in the include directory. |
|
| 2277 | * See include_path for more |
||
| 2278 | * information. |
||
| 2279 | * </td> |
||
| 2280 | 2 | * </tr> |
|
| 2281 | 2 | * <tr valign="top"> |
|
| 2282 | * <td> |
||
| 2283 | 2 | * FILE_TEXT |
|
| 2284 | * </td> |
||
| 2285 | 2 | * <td> |
|
| 2286 | 1 | * As of PHP 6, the default encoding of the read |
|
| 2287 | 1 | * data is UTF-8. You can specify a different encoding by creating a |
|
| 2288 | 1 | * custom context or by changing the default using |
|
| 2289 | 1 | * stream_default_encoding. This flag cannot be |
|
| 2290 | 1 | * used with FILE_BINARY. |
|
| 2291 | 1 | * </td> |
|
| 2292 | * </tr> |
||
| 2293 | 2 | * <tr valign="top"> |
|
| 2294 | 2 | * <td> |
|
| 2295 | 2 | * FILE_BINARY |
|
| 2296 | 2 | * </td> |
|
| 2297 | * <td> |
||
| 2298 | * With this flag, the file is read in binary mode. This is the default |
||
| 2299 | 2 | * setting and cannot be used with FILE_TEXT. |
|
| 2300 | * </td> |
||
| 2301 | * </tr> |
||
| 2302 | * </table> |
||
| 2303 | * </p> |
||
| 2304 | * @param resource $context [optional] <p> |
||
| 2305 | * A valid context resource created with |
||
| 2306 | * stream_context_create. If you don't need to use a |
||
| 2307 | * custom context, you can skip this parameter by &null;. |
||
| 2308 | * </p> |
||
| 2309 | 1 | * @param int $offset [optional] <p> |
|
| 2310 | * The offset where the reading starts. |
||
| 2311 | 1 | * </p> |
|
| 2312 | * @param int $maxlen [optional] <p> |
||
| 2313 | * Maximum length of data read. The default is to read until end |
||
| 2314 | * of file is reached. |
||
| 2315 | * </p> |
||
| 2316 | * @param int $timeout |
||
| 2317 | * |
||
| 2318 | * @param boolean $convertToUtf8 WARNING: maybe you can't use this option for images or pdf, because they used non |
||
| 2319 | * default utf-8 chars |
||
| 2320 | * |
||
| 2321 | * @return string The function returns the read data or false on failure. |
||
| 2322 | */ |
||
| 2323 | 7 | public static function file_get_contents($filename, $flags = null, $context = null, $offset = null, $maxlen = null, $timeout = 10, $convertToUtf8 = true) |
|
| 2361 | 7 | ||
| 2362 | 7 | /** |
|
| 2363 | * Checks if a file starts with BOM character. |
||
| 2364 | 7 | * |
|
| 2365 | * @param string $file_path Path to a valid file. |
||
| 2366 | * |
||
| 2367 | * @return bool True if the file has BOM at the start, False otherwise. |
||
| 2368 | */ |
||
| 2369 | public static function file_has_bom($file_path) |
||
| 2373 | |||
| 2374 | /** |
||
| 2375 | * Normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
| 2376 | * |
||
| 2377 | * @param mixed $var |
||
| 2378 | * @param int $normalization_form |
||
| 2379 | * @param string $leading_combining |
||
| 2380 | * |
||
| 2381 | * @return mixed |
||
| 2382 | */ |
||
| 2383 | public static function filter($var, $normalization_form = 4, $leading_combining = '◌') |
||
| 2426 | |||
| 2427 | /** |
||
| 2428 | * "filter_input()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
| 2429 | * |
||
| 2430 | * @param int $type |
||
| 2431 | * @param string $var |
||
| 2432 | * @param int $filter |
||
| 2433 | * @param mixed $option |
||
| 2434 | * |
||
| 2435 | * @return mixed |
||
| 2436 | */ |
||
| 2437 | 1 | View Code Duplication | public static function filter_input($type, $var, $filter = FILTER_DEFAULT, $option = null) |
| 2447 | |||
| 2448 | /** |
||
| 2449 | * "filter_input_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
| 2450 | * |
||
| 2451 | * @param int $type |
||
| 2452 | * @param mixed $definition |
||
| 2453 | * @param bool $add_empty |
||
| 2454 | * |
||
| 2455 | * @return mixed |
||
| 2456 | */ |
||
| 2457 | 1 | View Code Duplication | public static function filter_input_array($type, $definition = null, $add_empty = true) |
| 2467 | |||
| 2468 | /** |
||
| 2469 | 8 | * "filter_var()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
|
| 2470 | * |
||
| 2471 | 8 | * @param mixed $var |
|
| 2472 | 8 | * @param int $filter |
|
| 2473 | * @param mixed $option |
||
| 2474 | 8 | * |
|
| 2475 | * @return mixed |
||
| 2476 | 8 | */ |
|
| 2477 | 2 | View Code Duplication | public static function filter_var($var, $filter = FILTER_DEFAULT, $option = null) |
| 2487 | |||
| 2488 | /** |
||
| 2489 | * "filter_var_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed. |
||
| 2490 | * |
||
| 2491 | * @param array $data |
||
| 2492 | * @param mixed $definition |
||
| 2493 | * @param bool $add_empty |
||
| 2494 | * |
||
| 2495 | 1 | * @return mixed |
|
| 2496 | */ |
||
| 2497 | 1 | View Code Duplication | public static function filter_var_array($data, $definition = null, $add_empty = true) |
| 2507 | 1 | ||
| 2508 | 1 | /** |
|
| 2509 | 1 | * Checks if the number of Unicode characters in a string are not |
|
| 2510 | 1 | * more than the specified integer. |
|
| 2511 | 1 | * |
|
| 2512 | * @param string $str The original string to be checked. |
||
| 2513 | 1 | * @param int $box_size The size in number of chars to be checked against string. |
|
| 2514 | * |
||
| 2515 | * @return bool true if string is less than or equal to $box_size, false otherwise. |
||
| 2516 | */ |
||
| 2517 | public static function fits_inside($str, $box_size) |
||
| 2521 | |||
| 2522 | /** |
||
| 2523 | 1 | * Fixing a broken UTF-8 string. |
|
| 2524 | * |
||
| 2525 | 1 | * @param string $str |
|
| 2526 | * |
||
| 2527 | 1 | * @return string |
|
| 2528 | 1 | */ |
|
| 2529 | public static function fix_simple_utf8($str) |
||
| 2547 | |||
| 2548 | /** |
||
| 2549 | * Fix a double (or multiple) encoded UTF8 string. |
||
| 2550 | * |
||
| 2551 | * @param array|string $str |
||
| 2552 | * |
||
| 2553 | * @return string |
||
| 2554 | */ |
||
| 2555 | public static function fix_utf8($str) |
||
| 2575 | |||
| 2576 | /** |
||
| 2577 | * Get character of a specific character. |
||
| 2578 | * |
||
| 2579 | * @param string $chr Character. |
||
| 2580 | * |
||
| 2581 | * @return string 'RTL' or 'LTR' |
||
| 2582 | */ |
||
| 2583 | public static function getCharDirection($chr) |
||
| 2675 | 1 | ||
| 2676 | 1 | /** |
|
| 2677 | * get data from "/data/*.ser" |
||
| 2678 | 1 | * |
|
| 2679 | * @param string $file |
||
| 2680 | * |
||
| 2681 | * @return bool|string|array|int false on error |
||
| 2682 | */ |
||
| 2683 | protected static function getData($file) |
||
| 2693 | |||
| 2694 | /** |
||
| 2695 | * Creates a random string of UTF-8 characters. |
||
| 2696 | * |
||
| 2697 | * @param int $len The length of string in characters. |
||
| 2698 | * |
||
| 2699 | * @return string String consisting of random characters. |
||
| 2700 | */ |
||
| 2701 | public static function hash($len = 8) |
||
| 2741 | |||
| 2742 | /** |
||
| 2743 | * Converts hexadecimal U+xxxx code point representation to Integer. |
||
| 2744 | * |
||
| 2745 | * INFO: opposite to UTF8::int_to_hex( ) |
||
| 2746 | * |
||
| 2747 | * @param string $str The hexadecimal code point representation. |
||
| 2748 | * |
||
| 2749 | * @return int The code point, or 0 on failure. |
||
| 2750 | */ |
||
| 2751 | public static function hex_to_int($str) |
||
| 2759 | |||
| 2760 | /** |
||
| 2761 | * Converts a UTF-8 string to a series of HTML numbered entities. |
||
| 2762 | * |
||
| 2763 | * e.g.: {'ی |
||
| 2764 | * |
||
| 2765 | * @param string $str The Unicode string to be encoded as numbered entities. |
||
| 2766 | * |
||
| 2767 | * @return string HTML numbered entities. |
||
| 2768 | */ |
||
| 2769 | public static function html_encode($str) |
||
| 2781 | |||
| 2782 | /** |
||
| 2783 | * UTF-8 version of html_entity_decode() |
||
| 2784 | * |
||
| 2785 | * The reason we are not using html_entity_decode() by itself is because |
||
| 2786 | * while it is not technically correct to leave out the semicolon |
||
| 2787 | * at the end of an entity most browsers will still interpret the entity |
||
| 2788 | * correctly. html_entity_decode() does not convert entities without |
||
| 2789 | * semicolons, so we are left with our own little solution here. Bummer. |
||
| 2790 | 15 | * |
|
| 2791 | * Convert all HTML entities to their applicable characters |
||
| 2792 | 15 | * |
|
| 2793 | * @link http://php.net/manual/en/function.html-entity-decode.php |
||
| 2794 | 15 | * |
|
| 2795 | 3 | * @param string $str <p> |
|
| 2796 | * The input string. |
||
| 2797 | * </p> |
||
| 2798 | 15 | * @param int $flags [optional] <p> |
|
| 2799 | 4 | * A bitmask of one or more of the following flags, which specify how to handle quotes and |
|
| 2800 | * which document type to use. The default is ENT_COMPAT | ENT_HTML401. |
||
| 2801 | * <table> |
||
| 2802 | 15 | * Available <i>flags</i> constants |
|
| 2803 | 3 | * <tr valign="top"> |
|
| 2804 | 3 | * <td>Constant Name</td> |
|
| 2805 | 3 | * <td>Description</td> |
|
| 2806 | * </tr> |
||
| 2807 | * <tr valign="top"> |
||
| 2808 | 3 | * <td><b>ENT_COMPAT</b></td> |
|
| 2809 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
| 2810 | * </tr> |
||
| 2811 | 15 | * <tr valign="top"> |
|
| 2812 | * <td><b>ENT_QUOTES</b></td> |
||
| 2813 | 15 | * <td>Will convert both double and single quotes.</td> |
|
| 2814 | * </tr> |
||
| 2815 | * <tr valign="top"> |
||
| 2816 | 15 | * <td><b>ENT_NOQUOTES</b></td> |
|
| 2817 | 15 | * <td>Will leave both double and single quotes unconverted.</td> |
|
| 2818 | 15 | * </tr> |
|
| 2819 | * <tr valign="top"> |
||
| 2820 | 15 | * <td><b>ENT_HTML401</b></td> |
|
| 2821 | * <td> |
||
| 2822 | 15 | * Handle code as HTML 4.01. |
|
| 2823 | * </td> |
||
| 2824 | 15 | * </tr> |
|
| 2825 | * <tr valign="top"> |
||
| 2826 | * <td><b>ENT_XML1</b></td> |
||
| 2827 | * <td> |
||
| 2828 | * Handle code as XML 1. |
||
| 2829 | * </td> |
||
| 2830 | * </tr> |
||
| 2831 | * <tr valign="top"> |
||
| 2832 | * <td><b>ENT_XHTML</b></td> |
||
| 2833 | * <td> |
||
| 2834 | 12 | * Handle code as XHTML. |
|
| 2835 | * </td> |
||
| 2836 | 12 | * </tr> |
|
| 2837 | * <tr valign="top"> |
||
| 2838 | 12 | * <td><b>ENT_HTML5</b></td> |
|
| 2839 | * <td> |
||
| 2840 | 12 | * Handle code as HTML 5. |
|
| 2841 | 5 | * </td> |
|
| 2842 | * </tr> |
||
| 2843 | * </table> |
||
| 2844 | 11 | * </p> |
|
| 2845 | * @param string $encoding [optional] <p> |
||
| 2846 | * Encoding to use. |
||
| 2847 | * </p> |
||
| 2848 | * |
||
| 2849 | * @return string the decoded string. |
||
| 2850 | */ |
||
| 2851 | public static function html_entity_decode($str, $flags = null, $encoding = 'UTF-8') |
||
| 2887 | |||
| 2888 | /** |
||
| 2889 | * Convert all applicable characters to HTML entities: UTF-8 version of htmlentities() |
||
| 2890 | * |
||
| 2891 | * @link http://php.net/manual/en/function.htmlentities.php |
||
| 2892 | * |
||
| 2893 | * @param string $str <p> |
||
| 2894 | * The input string. |
||
| 2895 | * </p> |
||
| 2896 | * @param int $flags [optional] <p> |
||
| 2897 | * A bitmask of one or more of the following flags, which specify how to handle quotes, |
||
| 2898 | * invalid code unit sequences and the used document type. The default is |
||
| 2899 | * ENT_COMPAT | ENT_HTML401. |
||
| 2900 | * <table> |
||
| 2901 | * Available <i>flags</i> constants |
||
| 2902 | * <tr valign="top"> |
||
| 2903 | * <td>Constant Name</td> |
||
| 2904 | * <td>Description</td> |
||
| 2905 | * </tr> |
||
| 2906 | * <tr valign="top"> |
||
| 2907 | * <td><b>ENT_COMPAT</b></td> |
||
| 2908 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
| 2909 | * </tr> |
||
| 2910 | * <tr valign="top"> |
||
| 2911 | * <td><b>ENT_QUOTES</b></td> |
||
| 2912 | * <td>Will convert both double and single quotes.</td> |
||
| 2913 | * </tr> |
||
| 2914 | * <tr valign="top"> |
||
| 2915 | * <td><b>ENT_NOQUOTES</b></td> |
||
| 2916 | * <td>Will leave both double and single quotes unconverted.</td> |
||
| 2917 | * </tr> |
||
| 2918 | * <tr valign="top"> |
||
| 2919 | * <td><b>ENT_IGNORE</b></td> |
||
| 2920 | * <td> |
||
| 2921 | * Silently discard invalid code unit sequences instead of returning |
||
| 2922 | * an empty string. Using this flag is discouraged as it |
||
| 2923 | * may have security implications. |
||
| 2924 | * </td> |
||
| 2925 | * </tr> |
||
| 2926 | * <tr valign="top"> |
||
| 2927 | * <td><b>ENT_SUBSTITUTE</b></td> |
||
| 2928 | * <td> |
||
| 2929 | * Replace invalid code unit sequences with a Unicode Replacement Character |
||
| 2930 | * U+FFFD (UTF-8) or &#38;#FFFD; (otherwise) instead of returning an empty string. |
||
| 2931 | * </td> |
||
| 2932 | * </tr> |
||
| 2933 | * <tr valign="top"> |
||
| 2934 | * <td><b>ENT_DISALLOWED</b></td> |
||
| 2935 | * <td> |
||
| 2936 | * Replace invalid code points for the given document type with a |
||
| 2937 | * Unicode Replacement Character U+FFFD (UTF-8) or &#38;#FFFD; |
||
| 2938 | * (otherwise) instead of leaving them as is. This may be useful, for |
||
| 2939 | * instance, to ensure the well-formedness of XML documents with |
||
| 2940 | * embedded external content. |
||
| 2941 | * </td> |
||
| 2942 | * </tr> |
||
| 2943 | * <tr valign="top"> |
||
| 2944 | * <td><b>ENT_HTML401</b></td> |
||
| 2945 | * <td> |
||
| 2946 | * Handle code as HTML 4.01. |
||
| 2947 | * </td> |
||
| 2948 | * </tr> |
||
| 2949 | * <tr valign="top"> |
||
| 2950 | 2 | * <td><b>ENT_XML1</b></td> |
|
| 2951 | * <td> |
||
| 2952 | 2 | * Handle code as XML 1. |
|
| 2953 | * </td> |
||
| 2954 | * </tr> |
||
| 2955 | * <tr valign="top"> |
||
| 2956 | * <td><b>ENT_XHTML</b></td> |
||
| 2957 | * <td> |
||
| 2958 | * Handle code as XHTML. |
||
| 2959 | * </td> |
||
| 2960 | * </tr> |
||
| 2961 | * <tr valign="top"> |
||
| 2962 | * <td><b>ENT_HTML5</b></td> |
||
| 2963 | * <td> |
||
| 2964 | * Handle code as HTML 5. |
||
| 2965 | * </td> |
||
| 2966 | * </tr> |
||
| 2967 | * </table> |
||
| 2968 | * </p> |
||
| 2969 | * @param string $encoding [optional] <p> |
||
| 2970 | * Like <b>htmlspecialchars</b>, |
||
| 2971 | * <b>htmlentities</b> takes an optional third argument |
||
| 2972 | * <i>encoding</i> which defines encoding used in |
||
| 2973 | * conversion. |
||
| 2974 | * Although this argument is technically optional, you are highly |
||
| 2975 | * encouraged to specify the correct value for your code. |
||
| 2976 | * </p> |
||
| 2977 | * @param bool $double_encode [optional] <p> |
||
| 2978 | * When <i>double_encode</i> is turned off PHP will not |
||
| 2979 | * encode existing html entities. The default is to convert everything. |
||
| 2980 | * </p> |
||
| 2981 | * |
||
| 2982 | * |
||
| 2983 | * @return string the encoded string. |
||
| 2984 | * </p> |
||
| 2985 | * <p> |
||
| 2986 | * If the input <i>string</i> contains an invalid code unit |
||
| 2987 | * sequence within the given <i>encoding</i> an empty string |
||
| 2988 | * will be returned, unless either the <b>ENT_IGNORE</b> or |
||
| 2989 | * <b>ENT_SUBSTITUTE</b> flags are set. |
||
| 2990 | */ |
||
| 2991 | public static function htmlentities($str, $flags = ENT_COMPAT, $encoding = 'UTF-8', $double_encode = true) |
||
| 2995 | |||
| 2996 | /** |
||
| 2997 | * Convert special characters to HTML entities: UTF-8 version of htmlspecialchars() |
||
| 2998 | * |
||
| 2999 | * @link http://php.net/manual/en/function.htmlspecialchars.php |
||
| 3000 | * |
||
| 3001 | * @param string $str <p> |
||
| 3002 | * The string being converted. |
||
| 3003 | * </p> |
||
| 3004 | * @param int $flags [optional] <p> |
||
| 3005 | * A bitmask of one or more of the following flags, which specify how to handle quotes, |
||
| 3006 | * invalid code unit sequences and the used document type. The default is |
||
| 3007 | * ENT_COMPAT | ENT_HTML401. |
||
| 3008 | * <table> |
||
| 3009 | * Available <i>flags</i> constants |
||
| 3010 | * <tr valign="top"> |
||
| 3011 | * <td>Constant Name</td> |
||
| 3012 | * <td>Description</td> |
||
| 3013 | * </tr> |
||
| 3014 | * <tr valign="top"> |
||
| 3015 | * <td><b>ENT_COMPAT</b></td> |
||
| 3016 | * <td>Will convert double-quotes and leave single-quotes alone.</td> |
||
| 3017 | * </tr> |
||
| 3018 | * <tr valign="top"> |
||
| 3019 | * <td><b>ENT_QUOTES</b></td> |
||
| 3020 | * <td>Will convert both double and single quotes.</td> |
||
| 3021 | * </tr> |
||
| 3022 | * <tr valign="top"> |
||
| 3023 | * <td><b>ENT_NOQUOTES</b></td> |
||
| 3024 | * <td>Will leave both double and single quotes unconverted.</td> |
||
| 3025 | * </tr> |
||
| 3026 | * <tr valign="top"> |
||
| 3027 | * <td><b>ENT_IGNORE</b></td> |
||
| 3028 | * <td> |
||
| 3029 | * Silently discard invalid code unit sequences instead of returning |
||
| 3030 | * an empty string. Using this flag is discouraged as it |
||
| 3031 | * may have security implications. |
||
| 3032 | * </td> |
||
| 3033 | * </tr> |
||
| 3034 | * <tr valign="top"> |
||
| 3035 | * <td><b>ENT_SUBSTITUTE</b></td> |
||
| 3036 | * <td> |
||
| 3037 | * Replace invalid code unit sequences with a Unicode Replacement Character |
||
| 3038 | * U+FFFD (UTF-8) or &#38;#FFFD; (otherwise) instead of returning an empty string. |
||
| 3039 | * </td> |
||
| 3040 | * </tr> |
||
| 3041 | * <tr valign="top"> |
||
| 3042 | * <td><b>ENT_DISALLOWED</b></td> |
||
| 3043 | * <td> |
||
| 3044 | * Replace invalid code points for the given document type with a |
||
| 3045 | * Unicode Replacement Character U+FFFD (UTF-8) or &#38;#FFFD; |
||
| 3046 | * (otherwise) instead of leaving them as is. This may be useful, for |
||
| 3047 | * instance, to ensure the well-formedness of XML documents with |
||
| 3048 | * embedded external content. |
||
| 3049 | * </td> |
||
| 3050 | * </tr> |
||
| 3051 | * <tr valign="top"> |
||
| 3052 | * <td><b>ENT_HTML401</b></td> |
||
| 3053 | * <td> |
||
| 3054 | * Handle code as HTML 4.01. |
||
| 3055 | * </td> |
||
| 3056 | * </tr> |
||
| 3057 | * <tr valign="top"> |
||
| 3058 | * <td><b>ENT_XML1</b></td> |
||
| 3059 | * <td> |
||
| 3060 | * Handle code as XML 1. |
||
| 3061 | * </td> |
||
| 3062 | 1 | * </tr> |
|
| 3063 | * <tr valign="top"> |
||
| 3064 | 1 | * <td><b>ENT_XHTML</b></td> |
|
| 3065 | * <td> |
||
| 3066 | * Handle code as XHTML. |
||
| 3067 | * </td> |
||
| 3068 | * </tr> |
||
| 3069 | * <tr valign="top"> |
||
| 3070 | * <td><b>ENT_HTML5</b></td> |
||
| 3071 | * <td> |
||
| 3072 | 1 | * Handle code as HTML 5. |
|
| 3073 | * </td> |
||
| 3074 | 1 | * </tr> |
|
| 3075 | * </table> |
||
| 3076 | * </p> |
||
| 3077 | * @param string $encoding [optional] <p> |
||
| 3078 | * Defines encoding used in conversion. |
||
| 3079 | * </p> |
||
| 3080 | * <p> |
||
| 3081 | * For the purposes of this function, the encodings |
||
| 3082 | * ISO-8859-1, ISO-8859-15, |
||
| 3083 | * UTF-8, cp866, |
||
| 3084 | * cp1251, cp1252, and |
||
| 3085 | * KOI8-R are effectively equivalent, provided the |
||
| 3086 | * <i>string</i> itself is valid for the encoding, as |
||
| 3087 | * the characters affected by <b>htmlspecialchars</b> occupy |
||
| 3088 | * the same positions in all of these encodings. |
||
| 3089 | * </p> |
||
| 3090 | * @param bool $double_encode [optional] <p> |
||
| 3091 | * When <i>double_encode</i> is turned off PHP will not |
||
| 3092 | * encode existing html entities, the default is to convert everything. |
||
| 3093 | * </p> |
||
| 3094 | * |
||
| 3095 | * @return string The converted string. |
||
| 3096 | * </p> |
||
| 3097 | * <p> |
||
| 3098 | * If the input <i>string</i> contains an invalid code unit |
||
| 3099 | * sequence within the given <i>encoding</i> an empty string |
||
| 3100 | * will be returned, unless either the <b>ENT_IGNORE</b> or |
||
| 3101 | * <b>ENT_SUBSTITUTE</b> flags are set. |
||
| 3102 | */ |
||
| 3103 | 1 | public static function htmlspecialchars($str, $flags = ENT_COMPAT, $encoding = 'UTF-8', $double_encode = true) |
|
| 3107 | |||
| 3108 | /** |
||
| 3109 | * checks whether iconv is available on the server |
||
| 3110 | * |
||
| 3111 | * @return bool True if available, False otherwise |
||
| 3112 | */ |
||
| 3113 | public static function iconv_loaded() |
||
| 3117 | 1 | ||
| 3118 | /** |
||
| 3119 | * Converts Integer to hexadecimal U+xxxx code point representation. |
||
| 3120 | * |
||
| 3121 | * @param int $int The integer to be converted to hexadecimal code point. |
||
| 3122 | * @param string $pfix |
||
| 3123 | * |
||
| 3124 | * @return string The code point, or empty string on failure. |
||
| 3125 | */ |
||
| 3126 | public static function int_to_hex($int, $pfix = 'U+') |
||
| 3138 | |||
| 3139 | /** |
||
| 3140 | * checks whether intl is available on the server |
||
| 3141 | * |
||
| 3142 | * @return bool True if available, False otherwise |
||
| 3143 | */ |
||
| 3144 | public static function intl_loaded() |
||
| 3148 | |||
| 3149 | /** |
||
| 3150 | * alias for "UTF8::is_ascii()" |
||
| 3151 | * |
||
| 3152 | * @param string $str |
||
| 3153 | * |
||
| 3154 | * @return boolean |
||
| 3155 | */ |
||
| 3156 | public static function isAscii($str) |
||
| 3157 | { |
||
| 3158 | return self::is_ascii($str); |
||
| 3159 | } |
||
| 3160 | |||
| 3161 | /** |
||
| 3162 | * alias for "UTF8::is_base64" |
||
| 3163 | * |
||
| 3164 | * @param string $str |
||
| 3165 | * |
||
| 3166 | * @return bool |
||
| 3167 | */ |
||
| 3168 | public static function isBase64($str) |
||
| 3172 | |||
| 3173 | /** |
||
| 3174 | * alias for "UTF8::is_bom" |
||
| 3175 | * |
||
| 3176 | * @param string $utf8_chr |
||
| 3177 | * |
||
| 3178 | * @return boolean |
||
| 3179 | 16 | */ |
|
| 3180 | public static function isBom($utf8_chr) |
||
| 3184 | |||
| 3185 | /** |
||
| 3186 | * Try to check if a string is a json-string... |
||
| 3187 | * |
||
| 3188 | * @param $str |
||
| 3189 | * |
||
| 3190 | * @return bool |
||
| 3191 | */ |
||
| 3192 | 4 | public static function isJson($str) |
|
| 3210 | |||
| 3211 | /** |
||
| 3212 | 1 | * check if string contains any html-tags <lall> |
|
| 3213 | 1 | * |
|
| 3214 | * @param string $str |
||
| 3215 | 1 | * |
|
| 3216 | * @return boolean |
||
| 3217 | */ |
||
| 3218 | public static function isHtml($str) |
||
| 3237 | 4 | ||
| 3238 | 3 | /** |
|
| 3239 | * alias for "UTF8::is_utf8" |
||
| 3240 | 4 | * |
|
| 3241 | * @param string $str |
||
| 3242 | * |
||
| 3243 | * @return bool |
||
| 3244 | */ |
||
| 3245 | public static function isUtf8($str) |
||
| 3249 | |||
| 3250 | /** |
||
| 3251 | * Checks if a string is 7 bit ASCII. |
||
| 3252 | * |
||
| 3253 | * @param string $str The string to check. |
||
| 3254 | * |
||
| 3255 | * @return bool <strong>true</strong> if it is ASCII<br /> |
||
| 3256 | * <strong>false</strong> otherwise |
||
| 3257 | */ |
||
| 3258 | public static function is_ascii($str) |
||
| 3262 | |||
| 3263 | /** |
||
| 3264 | * Returns true if the string is base64 encoded, false otherwise. |
||
| 3265 | * |
||
| 3266 | * @param string $str |
||
| 3267 | * |
||
| 3268 | * @return bool Whether or not $str is base64 encoded |
||
| 3269 | */ |
||
| 3270 | public static function is_base64($str) |
||
| 3284 | |||
| 3285 | 2 | /** |
|
| 3286 | * Check if the input is binary... (is look like a hack) |
||
| 3287 | 2 | * |
|
| 3288 | 2 | * @param string $input |
|
| 3289 | * |
||
| 3290 | 2 | * @return bool |
|
| 3291 | 2 | */ |
|
| 3292 | 2 | public static function is_binary($input) |
|
| 3309 | 2 | ||
| 3310 | 2 | /** |
|
| 3311 | 2 | * Check if the file is binary. |
|
| 3312 | 2 | * |
|
| 3313 | 2 | * @param string $file |
|
| 3314 | 1 | * |
|
| 3315 | 1 | * @return boolean |
|
| 3316 | 2 | */ |
|
| 3317 | 2 | public static function is_binary_file($file) |
|
| 3329 | |||
| 3330 | 2 | /** |
|
| 3331 | * Checks if the given string is exactly "UTF8 - Byte Order Mark". |
||
| 3332 | * |
||
| 3333 | * WARNING: Use "UTF8::string_has_bom()" if you will check BOM in a string. |
||
| 3334 | * |
||
| 3335 | * @param string $utf8_chr The input string. |
||
| 3336 | * |
||
| 3337 | * @return bool True if the $utf8_chr is Byte Order Mark, False otherwise. |
||
| 3338 | */ |
||
| 3339 | public static function is_bom($utf8_chr) |
||
| 3343 | 2 | ||
| 3344 | /** |
||
| 3345 | 2 | * Check if the string is UTF-16. |
|
| 3346 | 2 | * |
|
| 3347 | 2 | * @param string $str |
|
| 3348 | 2 | * |
|
| 3349 | 2 | * @return int|false false if is't not UTF16, 1 for UTF-16LE, 2 for UTF-16BE. |
|
| 3350 | 2 | */ |
|
| 3351 | 2 | View Code Duplication | public static function is_utf16($str) |
| 3398 | |||
| 3399 | 34 | /** |
|
| 3400 | * Check if the string is UTF-32. |
||
| 3401 | 34 | * |
|
| 3402 | 3 | * @param string $str |
|
| 3403 | * |
||
| 3404 | * @return int|false false if is't not UTF16, 1 for UTF-32LE, 2 for UTF-32BE. |
||
| 3405 | 32 | */ |
|
| 3406 | View Code Duplication | public static function is_utf32($str) |
|
| 3453 | |||
| 3454 | /** |
||
| 3455 | * Checks whether the passed string contains only byte sequences that appear valid UTF-8 characters. |
||
| 3456 | * |
||
| 3457 | 3 | * @see http://hsivonen.iki.fi/php-utf8/ |
|
| 3458 | 3 | * |
|
| 3459 | 3 | * @param string $str The string to be checked. |
|
| 3460 | 3 | * |
|
| 3461 | 7 | * @return bool |
|
| 3462 | */ |
||
| 3463 | 3 | public static function is_utf8($str) |
|
| 3587 | |||
| 3588 | /** |
||
| 3589 | * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)<br/> |
||
| 3590 | * Decodes a JSON string |
||
| 3591 | * |
||
| 3592 | * @link http://php.net/manual/en/function.json-decode.php |
||
| 3593 | * |
||
| 3594 | * @param string $json <p> |
||
| 3595 | * The <i>json</i> string being decoded. |
||
| 3596 | * </p> |
||
| 3597 | * <p> |
||
| 3598 | * This function only works with UTF-8 encoded strings. |
||
| 3599 | * </p> |
||
| 3600 | * <p>PHP implements a superset of |
||
| 3601 | * JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard |
||
| 3602 | * only supports these values when they are nested inside an array or an object. |
||
| 3603 | * </p> |
||
| 3604 | * @param bool $assoc [optional] <p> |
||
| 3605 | * When <b>TRUE</b>, returned objects will be converted into |
||
| 3606 | * associative arrays. |
||
| 3607 | 1 | * </p> |
|
| 3608 | * @param int $depth [optional] <p> |
||
| 3609 | 1 | * User specified recursion depth. |
|
| 3610 | * </p> |
||
| 3611 | 1 | * @param int $options [optional] <p> |
|
| 3612 | * Bitmask of JSON decode options. Currently only |
||
| 3613 | * <b>JSON_BIGINT_AS_STRING</b> |
||
| 3614 | 1 | * is supported (default is to cast large integers as floats) |
|
| 3615 | * </p> |
||
| 3616 | * |
||
| 3617 | 1 | * @return mixed the value encoded in <i>json</i> in appropriate |
|
| 3618 | * PHP type. Values true, false and |
||
| 3619 | * null (case-insensitive) are returned as <b>TRUE</b>, <b>FALSE</b> |
||
| 3620 | * and <b>NULL</b> respectively. <b>NULL</b> is returned if the |
||
| 3621 | * <i>json</i> cannot be decoded or if the encoded |
||
| 3622 | * data is deeper than the recursion limit. |
||
| 3623 | */ |
||
| 3624 | public static function json_decode($json, $assoc = false, $depth = 512, $options = 0) |
||
| 3636 | |||
| 3637 | /** |
||
| 3638 | * (PHP 5 >= 5.2.0, PECL json >= 1.2.0)<br/> |
||
| 3639 | * Returns the JSON representation of a value |
||
| 3640 | * |
||
| 3641 | * @link http://php.net/manual/en/function.json-encode.php |
||
| 3642 | 24 | * |
|
| 3643 | * @param mixed $value <p> |
||
| 3644 | 24 | * The <i>value</i> being encoded. Can be any type except |
|
| 3645 | * a resource. |
||
| 3646 | 24 | * </p> |
|
| 3647 | 2 | * <p> |
|
| 3648 | * All string data must be UTF-8 encoded. |
||
| 3649 | * </p> |
||
| 3650 | 23 | * <p>PHP implements a superset of |
|
| 3651 | * JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard |
||
| 3652 | 23 | * only supports these values when they are nested inside an array or an object. |
|
| 3653 | * </p> |
||
| 3654 | * @param int $options [optional] <p> |
||
| 3655 | * Bitmask consisting of <b>JSON_HEX_QUOT</b>, |
||
| 3656 | * <b>JSON_HEX_TAG</b>, |
||
| 3657 | * <b>JSON_HEX_AMP</b>, |
||
| 3658 | * <b>JSON_HEX_APOS</b>, |
||
| 3659 | * <b>JSON_NUMERIC_CHECK</b>, |
||
| 3660 | * <b>JSON_PRETTY_PRINT</b>, |
||
| 3661 | * <b>JSON_UNESCAPED_SLASHES</b>, |
||
| 3662 | 1 | * <b>JSON_FORCE_OBJECT</b>, |
|
| 3663 | * <b>JSON_UNESCAPED_UNICODE</b>. The behaviour of these |
||
| 3664 | 1 | * constants is described on |
|
| 3665 | * the JSON constants page. |
||
| 3666 | * </p> |
||
| 3667 | * @param int $depth [optional] <p> |
||
| 3668 | 1 | * Set the maximum depth. Must be greater than zero. |
|
| 3669 | * </p> |
||
| 3670 | * |
||
| 3671 | * @return string a JSON encoded string on success or <b>FALSE</b> on failure. |
||
| 3672 | */ |
||
| 3673 | public static function json_encode($value, $options = 0, $depth = 512) |
||
| 3685 | 1 | ||
| 3686 | /** |
||
| 3687 | * Makes string's first char lowercase. |
||
| 3688 | * |
||
| 3689 | * @param string $str The input string |
||
| 3690 | * |
||
| 3691 | * @return string The resulting string |
||
| 3692 | */ |
||
| 3693 | public static function lcfirst($str) |
||
| 3697 | |||
| 3698 | 2 | /** |
|
| 3699 | 2 | * Strip whitespace or other characters from beginning of a UTF-8 string. |
|
| 3700 | 2 | * |
|
| 3701 | * WARNING: This is much slower then "ltrim()" !!!! |
||
| 3702 | 2 | * |
|
| 3703 | * @param string $str The string to be trimmed |
||
| 3704 | * @param string $chars Optional characters to be stripped |
||
| 3705 | * |
||
| 3706 | * @return string The string with unwanted characters stripped from the left |
||
| 3707 | */ |
||
| 3708 | View Code Duplication | public static function ltrim($str = '', $chars = INF) |
|
| 3720 | |||
| 3721 | /** |
||
| 3722 | * Returns the UTF-8 character with the maximum code point in the given data. |
||
| 3723 | * |
||
| 3724 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
||
| 3725 | * |
||
| 3726 | * @return string The character with the highest code point than others. |
||
| 3727 | */ |
||
| 3728 | 13 | View Code Duplication | public static function max($arg) |
| 3736 | 13 | ||
| 3737 | 13 | /** |
|
| 3738 | 13 | * Calculates and returns the maximum number of bytes taken by any |
|
| 3739 | 13 | * UTF-8 encoded character in the given string. |
|
| 3740 | 13 | * |
|
| 3741 | 13 | * @param string $str The original Unicode string. |
|
| 3742 | 13 | * |
|
| 3743 | 13 | * @return int An array of byte lengths of each character. |
|
| 3744 | 13 | */ |
|
| 3745 | 13 | public static function max_chr_width($str) |
|
| 3754 | 13 | ||
| 3755 | /** |
||
| 3756 | * checks whether mbstring is available on the server |
||
| 3757 | * |
||
| 3758 | * @return bool True if available, False otherwise |
||
| 3759 | */ |
||
| 3760 | public static function mbstring_loaded() |
||
| 3770 | 1 | ||
| 3771 | 1 | /** |
|
| 3772 | 1 | * Returns the UTF-8 character with the minimum code point in the given data. |
|
| 3773 | * |
||
| 3774 | 2 | * @param mixed $arg A UTF-8 encoded string or an array of such strings. |
|
| 3775 | * |
||
| 3776 | * @return string The character with the lowest code point than others. |
||
| 3777 | */ |
||
| 3778 | View Code Duplication | public static function min($arg) |
|
| 3786 | 8 | ||
| 3787 | /** |
||
| 3788 | 8 | * Normalize the encoding-name input. |
|
| 3789 | 8 | * |
|
| 3790 | * @param string $encoding e.g.: ISO, UTF8, WINDOWS-1251 etc. |
||
| 3791 | 8 | * |
|
| 3792 | * @return string e.g.: ISO-8859-1, UTF-8, ISO-8859-5 etc. |
||
| 3793 | 8 | */ |
|
| 3794 | public static function normalizeEncoding($encoding) |
||
| 3841 | |||
| 3842 | 1 | /** |
|
| 3843 | * Normalize MS Word special characters. |
||
| 3844 | 1 | * |
|
| 3845 | * @param string $str The string to be normalized. |
||
| 3846 | * |
||
| 3847 | * @return string |
||
| 3848 | */ |
||
| 3849 | public static function normalize_msword($str) |
||
| 3861 | 14 | ||
| 3862 | 14 | /** |
|
| 3863 | * Normalize the whitespace. |
||
| 3864 | 14 | * |
|
| 3865 | 2 | * @param string $str The string to be normalized. |
|
| 3866 | * @param bool $keepNonBreakingSpace Set to true, to keep non-breaking-spaces. |
||
| 3867 | * @param bool $keepBidiUnicodeControls Set to true, to keep non-printable (for the web) bidirectional text chars. |
||
| 3868 | 13 | * |
|
| 3869 | 7 | * @return string |
|
| 3870 | */ |
||
| 3871 | public static function normalize_whitespace($str, $keepNonBreakingSpace = false, $keepBidiUnicodeControls = false) |
||
| 3900 | 1 | ||
| 3901 | /** |
||
| 3902 | 1 | * Format a number with grouped thousands. |
|
| 3903 | * |
||
| 3904 | 1 | * @param float $number |
|
| 3905 | 1 | * @param int $decimals |
|
| 3906 | * @param string $dec_point |
||
| 3907 | * @param string $thousands_sep |
||
| 3908 | * |
||
| 3909 | * @return string |
||
| 3910 | */ |
||
| 3911 | public static function number_format($number, $decimals = 0, $dec_point = '.', $thousands_sep = ',') |
||
| 3936 | |||
| 3937 | 1 | /** |
|
| 3938 | * Calculates Unicode code point of the given UTF-8 encoded character. |
||
| 3939 | * |
||
| 3940 | 1 | * @param string $s The character of which to calculate code point. |
|
| 3941 | * |
||
| 3942 | * @return int Unicode code point of the given character,<br /> |
||
| 3943 | * 0 on invalid UTF-8 byte sequence. |
||
| 3944 | 1 | */ |
|
| 3945 | public static function ord($s) |
||
| 3968 | |||
| 3969 | /** |
||
| 3970 | * Parses the string into variables. |
||
| 3971 | * |
||
| 3972 | * WARNING: This differs from parse_str() by returning the results |
||
| 3973 | * instead of placing them in the local scope! |
||
| 3974 | * |
||
| 3975 | 7 | * @link http://php.net/manual/en/function.parse-str.php |
|
| 3976 | * |
||
| 3977 | 7 | * @param string $str <p> |
|
| 3978 | * The input string. |
||
| 3979 | * </p> |
||
| 3980 | 7 | * @param array $result <p> |
|
| 3981 | 2 | * If the second parameter arr is present, |
|
| 3982 | 2 | * variables are stored in this variable as array elements instead. |
|
| 3983 | 7 | * </p> |
|
| 3984 | * |
||
| 3985 | 7 | * @return void |
|
| 3986 | */ |
||
| 3987 | public static function parse_str($str, &$result) |
||
| 3996 | 1 | ||
| 3997 | 3 | /** |
|
| 3998 | * checks if \u modifier is available that enables Unicode support in PCRE. |
||
| 3999 | 7 | * |
|
| 4000 | * @return bool True if support is available, false otherwise |
||
| 4001 | */ |
||
| 4002 | 3 | public static function pcre_utf8_support() |
|
| 4007 | |||
| 4008 | 3 | /** |
|
| 4009 | 1 | * Create an array containing a range of UTF-8 characters. |
|
| 4010 | 1 | * |
|
| 4011 | 3 | * @param mixed $var1 Numeric or hexadecimal code points, or a UTF-8 character to start from. |
|
| 4012 | * @param mixed $var2 Numeric or hexadecimal code points, or a UTF-8 character to end at. |
||
| 4013 | 7 | * |
|
| 4014 | * @return array |
||
| 4015 | */ |
||
| 4016 | public static function range($var1, $var2) |
||
| 4054 | |||
| 4055 | 36 | /** |
|
| 4056 | * Remove the BOM from UTF-8 / UTF-16 / UTF-32 strings. |
||
| 4057 | * |
||
| 4058 | * @param string $str |
||
| 4059 | 36 | * |
|
| 4060 | 36 | * @return string |
|
| 4061 | 36 | */ |
|
| 4062 | 36 | public static function removeBOM($str = '') |
|
| 4086 | 36 | ||
| 4087 | 36 | /** |
|
| 4088 | * Removes duplicate occurrences of a string in another string. |
||
| 4089 | 36 | * |
|
| 4090 | 36 | * @param string $str The base string |
|
| 4091 | 36 | * @param string|array $what String to search for in the base string |
|
| 4092 | * |
||
| 4093 | 36 | * @return string The result string with removed duplicates |
|
| 4094 | */ |
||
| 4095 | public static function remove_duplicates($str, $what = ' ') |
||
| 4109 | |||
| 4110 | 23 | /** |
|
| 4111 | 5 | * Remove Invisible Characters |
|
| 4112 | * |
||
| 4113 | * This prevents sandwiching null characters |
||
| 4114 | 19 | * between ascii characters, like Java\0script. |
|
| 4115 | * |
||
| 4116 | 19 | * copy&past from https://github.com/bcit-ci/CodeIgniter/blob/develop/system/core/Common.php |
|
| 4117 | * |
||
| 4118 | * @param string $str |
||
| 4119 | * @param bool $url_encoded |
||
| 4120 | * |
||
| 4121 | * @return string |
||
| 4122 | */ |
||
| 4123 | public static function remove_invisible_characters($str, $url_encoded = true) |
||
| 4143 | 14 | ||
| 4144 | 15 | /** |
|
| 4145 | 1 | * replace diamond question mark (�) |
|
| 4146 | 1 | * |
|
| 4147 | * @param string $str |
||
| 4148 | * @param string $unknown |
||
| 4149 | 16 | * |
|
| 4150 | * @return string |
||
| 4151 | 16 | */ |
|
| 4152 | public static function replace_diamond_question_mark($str, $unknown = '?') |
||
| 4166 | |||
| 4167 | /** |
||
| 4168 | * Strip whitespace or other characters from end of a UTF-8 string. |
||
| 4169 | * |
||
| 4170 | * WARNING: This is much slower then "rtrim()" !!!! |
||
| 4171 | * |
||
| 4172 | * @param string $str The string to be trimmed |
||
| 4173 | * @param string $chars Optional characters to be stripped |
||
| 4174 | * |
||
| 4175 | * @return string The string with unwanted characters stripped from the right |
||
| 4176 | */ |
||
| 4177 | View Code Duplication | public static function rtrim($str = '', $chars = INF) |
|
| 4189 | |||
| 4190 | /** |
||
| 4191 | * rxClass |
||
| 4192 | * |
||
| 4193 | * @param string $s |
||
| 4194 | * @param string $class |
||
| 4195 | * |
||
| 4196 | * @return string |
||
| 4197 | */ |
||
| 4198 | protected static function rxClass($s, $class = '') |
||
| 4235 | |||
| 4236 | /** |
||
| 4237 | * Echo native UTF8-Support libs, e.g. for debugging. |
||
| 4238 | */ |
||
| 4239 | public static function showSupport() |
||
| 4245 | |||
| 4246 | /** |
||
| 4247 | * Converts a UTF-8 character to HTML Numbered Entity like "{". |
||
| 4248 | * |
||
| 4249 | * @param string $chr The Unicode character to be encoded as numbered entity. |
||
| 4250 | * |
||
| 4251 | * @return string The HTML numbered entity. |
||
| 4252 | */ |
||
| 4253 | public static function single_chr_html_encode($chr) |
||
| 4261 | |||
| 4262 | 24 | /** |
|
| 4263 | * Convert a string to an array of Unicode characters. |
||
| 4264 | * |
||
| 4265 | * @param string $str The string to split into array. |
||
| 4266 | 24 | * @param int $length Max character length of each array element. |
|
| 4267 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string. |
||
| 4268 | * |
||
| 4269 | * @return array An array containing chunks of the string. |
||
| 4270 | */ |
||
| 4271 | public static function split($str, $length = 1, $cleanUtf8 = false) |
||
| 4340 | |||
| 4341 | /** |
||
| 4342 | * Optimized "\mb_detect_encoding()"-function -> with support for UTF-16 and UTF-32. |
||
| 4343 | * |
||
| 4344 | * @param string $str |
||
| 4345 | * |
||
| 4346 | * @return false|string The detected string-encoding e.g. UTF-8 or UTF-16BE,<br /> |
||
| 4347 | * otherwise it will return false. |
||
| 4348 | */ |
||
| 4349 | public static function str_detect_encoding($str) |
||
| 4418 | |||
| 4419 | /** |
||
| 4420 | * Case-insensitive and UTF-8 safe version of <function>str_replace</function>. |
||
| 4421 | 2 | * |
|
| 4422 | * @link http://php.net/manual/en/function.str-ireplace.php |
||
| 4423 | 2 | * |
|
| 4424 | * @param mixed $search <p> |
||
| 4425 | 2 | * Every replacement with search array is |
|
| 4426 | 2 | * performed on the result of previous replacement. |
|
| 4427 | * </p> |
||
| 4428 | 2 | * @param mixed $replace <p> |
|
| 4429 | * </p> |
||
| 4430 | * @param mixed $subject <p> |
||
| 4431 | 2 | * If subject is an array, then the search and |
|
| 4432 | 2 | * replace is performed with every entry of |
|
| 4433 | 2 | * subject, and the return value is an array as |
|
| 4434 | 2 | * well. |
|
| 4435 | 2 | * </p> |
|
| 4436 | * @param int $count [optional] <p> |
||
| 4437 | 2 | * The number of matched and replaced needles will |
|
| 4438 | 2 | * be returned in count which is passed by |
|
| 4439 | 2 | * reference. |
|
| 4440 | 2 | * </p> |
|
| 4441 | 2 | * |
|
| 4442 | 2 | * @return mixed a string or an array of replacements. |
|
| 4443 | * @since 5.0 |
||
| 4444 | 2 | */ |
|
| 4445 | 2 | public static function str_ireplace($search, $replace, $subject, &$count = null) |
|
| 4463 | |||
| 4464 | /** |
||
| 4465 | * Limit the number of characters in a string, but also after the next word. |
||
| 4466 | * |
||
| 4467 | * @param string $str |
||
| 4468 | * @param int $length |
||
| 4469 | * @param string $strAddOn |
||
| 4470 | * |
||
| 4471 | * @return string |
||
| 4472 | */ |
||
| 4473 | public static function str_limit_after_word($str, $length = 100, $strAddOn = '...') |
||
| 4504 | |||
| 4505 | /** |
||
| 4506 | * Pad a UTF-8 string to given length with another string. |
||
| 4507 | * |
||
| 4508 | * @param string $input The input string |
||
| 4509 | * @param int $pad_length The length of return string |
||
| 4510 | * @param string $pad_string String to use for padding the input string |
||
| 4511 | * @param int $pad_type can be STR_PAD_RIGHT, STR_PAD_LEFT or STR_PAD_BOTH |
||
| 4512 | 12 | * |
|
| 4513 | * @return string Returns the padded string |
||
| 4514 | 12 | */ |
|
| 4515 | public static function str_pad($input, $pad_length, $pad_string = ' ', $pad_type = STR_PAD_RIGHT) |
||
| 4550 | 1 | ||
| 4551 | 1 | /** |
|
| 4552 | 1 | * Repeat a string. |
|
| 4553 | 1 | * |
|
| 4554 | * @param string $input <p> |
||
| 4555 | * The string to be repeated. |
||
| 4556 | 1 | * </p> |
|
| 4557 | * @param int $multiplier <p> |
||
| 4558 | * Number of time the input string should be |
||
| 4559 | * repeated. |
||
| 4560 | * </p> |
||
| 4561 | * <p> |
||
| 4562 | * multiplier has to be greater than or equal to 0. |
||
| 4563 | * If the multiplier is set to 0, the function |
||
| 4564 | * will return an empty string. |
||
| 4565 | * </p> |
||
| 4566 | * |
||
| 4567 | 17 | * @return string the repeated string. |
|
| 4568 | */ |
||
| 4569 | public static function str_repeat($input, $multiplier) |
||
| 4575 | |||
| 4576 | /** |
||
| 4577 | * INFO: this is only a wrapper for "str_replace()" -> the original functions is already UTF-8 safe |
||
| 4578 | 17 | * |
|
| 4579 | 17 | * (PHP 4, PHP 5)<br/> |
|
| 4580 | 17 | * Replace all occurrences of the search string with the replacement string |
|
| 4581 | 17 | * |
|
| 4582 | 17 | * @link http://php.net/manual/en/function.str-replace.php |
|
| 4583 | 16 | * |
|
| 4584 | 16 | * @param mixed $search <p> |
|
| 4585 | 17 | * The value being searched for, otherwise known as the needle. |
|
| 4586 | * An array may be used to designate multiple needles. |
||
| 4587 | * </p> |
||
| 4588 | * @param mixed $replace <p> |
||
| 4589 | * The replacement value that replaces found search |
||
| 4590 | 17 | * values. An array may be used to designate multiple replacements. |
|
| 4591 | 17 | * </p> |
|
| 4592 | * @param mixed $subject <p> |
||
| 4593 | * The string or array being searched and replaced on, |
||
| 4594 | 1 | * otherwise known as the haystack. |
|
| 4595 | 1 | * </p> |
|
| 4596 | * <p> |
||
| 4597 | * If subject is an array, then the search and |
||
| 4598 | 1 | * replace is performed with every entry of |
|
| 4599 | 1 | * subject, and the return value is an array as |
|
| 4600 | 1 | * well. |
|
| 4601 | 1 | * </p> |
|
| 4602 | 1 | * @param int $count [optional] If passed, this will hold the number of matched and replaced needles. |
|
| 4603 | * |
||
| 4604 | 1 | * @return mixed This function returns a string or an array with the replaced values. |
|
| 4605 | */ |
||
| 4606 | 1 | public static function str_replace($search, $replace, $subject, &$count = null) |
|
| 4610 | |||
| 4611 | /** |
||
| 4612 | * Shuffles all the characters in the string. |
||
| 4613 | * |
||
| 4614 | * @param string $str The input string |
||
| 4615 | * |
||
| 4616 | 1 | * @return string The shuffled string. |
|
| 4617 | */ |
||
| 4618 | 1 | public static function str_shuffle($str) |
|
| 4626 | 1 | ||
| 4627 | /** |
||
| 4628 | * Sort all characters according to code points. |
||
| 4629 | 1 | * |
|
| 4630 | 1 | * @param string $str A UTF-8 string. |
|
| 4631 | 1 | * @param bool $unique Sort unique. If true, repeated characters are ignored. |
|
| 4632 | * @param bool $desc If true, will sort characters in reverse code point order. |
||
| 4633 | 1 | * |
|
| 4634 | * @return string String of sorted characters |
||
| 4635 | */ |
||
| 4636 | public static function str_sort($str, $unique = false, $desc = false) |
||
| 4652 | |||
| 4653 | /** |
||
| 4654 | 8 | * Convert a string to an array. |
|
| 4655 | * |
||
| 4656 | 8 | * @param string $str |
|
| 4657 | * @param int $len |
||
| 4658 | 8 | * |
|
| 4659 | * @return array |
||
| 4660 | 8 | */ |
|
| 4661 | 2 | public static function str_split($str, $len = 1) |
|
| 4701 | |||
| 4702 | /** |
||
| 4703 | * Get a binary representation of a specific character. |
||
| 4704 | * |
||
| 4705 | * @param string $str The input character. |
||
| 4706 | * |
||
| 4707 | * @return string |
||
| 4708 | */ |
||
| 4709 | public static function str_to_binary($str) |
||
| 4728 | 2 | ||
| 4729 | /** |
||
| 4730 | 2 | * US-ASCII transliterations of Unicode text. |
|
| 4731 | 2 | * |
|
| 4732 | 1 | * Ported Sean M. Burke's Text::Unidecode Perl module (He did all the hard work!) |
|
| 4733 | * Warning: you should only pass this well formed UTF-8! |
||
| 4734 | 2 | * Be aware it works by making a copy of the input string which it appends transliterated |
|
| 4735 | * characters to - it uses a PHP output buffer to do this - it means, memory use will increase, |
||
| 4736 | 4 | * requiring up to the same amount again as the input string |
|
| 4737 | 4 | * |
|
| 4738 | 4 | * @see http://search.cpan.org/~sburke/Text-Unidecode-0.04/lib/Text/Unidecode.pm |
|
| 4739 | 4 | * |
|
| 4740 | 1 | * @author <[email protected]> |
|
| 4741 | * |
||
| 4742 | 7 | * @param string $str UTF-8 string to convert |
|
| 4743 | * @param string $unknown Character use if character unknown. (default is ?) |
||
| 4744 | 7 | * |
|
| 4745 | * @return string US-ASCII string |
||
| 4746 | */ |
||
| 4747 | public static function str_transliterate($str, $unknown = '?') |
||
| 4839 | |||
| 4840 | /** |
||
| 4841 | * Counts number of words in the UTF-8 string. |
||
| 4842 | * |
||
| 4843 | * @param string $str The input string. |
||
| 4844 | * @param int $format <strong>0</strong> => return a number of words<br /> |
||
| 4845 | * <strong>1</strong> => return an array of words |
||
| 4846 | * <strong>2</strong> => return an array of words with word-offset as key |
||
| 4847 | * @param string $charlist |
||
| 4848 | * |
||
| 4849 | * @return array|float The number of words in the string |
||
| 4850 | 2 | */ |
|
| 4851 | public static function str_word_count($str, $format = 0, $charlist = '') |
||
| 4884 | |||
| 4885 | /** |
||
| 4886 | * Case-insensitive string comparison. |
||
| 4887 | * |
||
| 4888 | * @param string $str1 |
||
| 4889 | * @param string $str2 |
||
| 4890 | * |
||
| 4891 | * @return int Returns < 0 if str1 is less than str2; > 0 if str1 is greater than str2, and 0 if they are equal. |
||
| 4892 | */ |
||
| 4893 | public static function strcasecmp($str1, $str2) |
||
| 4897 | 2 | ||
| 4898 | /** |
||
| 4899 | 2 | * String comparison. |
|
| 4900 | * |
||
| 4901 | * @param string $str1 |
||
| 4902 | * @param string $str2 |
||
| 4903 | * |
||
| 4904 | * @return int <strong>< 0</strong> if str1 is less than str2<br /> |
||
| 4905 | * <strong>> 0</strong> if str1 is greater than str2<br /> |
||
| 4906 | * <strong>0</strong> if they are equal. |
||
| 4907 | */ |
||
| 4908 | public static function strcmp($str1, $str2) |
||
| 4915 | |||
| 4916 | /** |
||
| 4917 | * Find length of initial segment not matching mask. |
||
| 4918 | * |
||
| 4919 | * @param string $str |
||
| 4920 | * @param string $charList |
||
| 4921 | * @param int $offset |
||
| 4922 | * @param int $length |
||
| 4923 | * |
||
| 4924 | * @return int|null |
||
| 4925 | 8 | */ |
|
| 4926 | public static function strcspn($str, $charList, $offset = 0, $length = 2147483647) |
||
| 4945 | 1 | ||
| 4946 | /** |
||
| 4947 | 7 | * Makes a UTF-8 string from code points. |
|
| 4948 | * |
||
| 4949 | * @param array $array Integer or Hexadecimal codepoints |
||
| 4950 | * |
||
| 4951 | * @return string UTF-8 encoded string |
||
| 4952 | */ |
||
| 4953 | public static function string($array) |
||
| 4965 | |||
| 4966 | 5 | /** |
|
| 4967 | * Checks if string starts with "UTF-8 BOM" character. |
||
| 4968 | 5 | * |
|
| 4969 | * @param string $str The input string. |
||
| 4970 | * |
||
| 4971 | * @return bool True if the string has BOM at the start, False otherwise. |
||
| 4972 | */ |
||
| 4973 | public static function string_has_bom($str) |
||
| 4977 | |||
| 4978 | /** |
||
| 4979 | * Strip HTML and PHP tags from a string. |
||
| 4980 | * |
||
| 4981 | * @link http://php.net/manual/en/function.strip-tags.php |
||
| 4982 | * |
||
| 4983 | * @param string $str <p> |
||
| 4984 | * The input string. |
||
| 4985 | 66 | * </p> |
|
| 4986 | * @param string $allowable_tags [optional] <p> |
||
| 4987 | 66 | * You can use the optional second parameter to specify tags which should |
|
| 4988 | * not be stripped. |
||
| 4989 | 66 | * </p> |
|
| 4990 | 4 | * <p> |
|
| 4991 | * HTML comments and PHP tags are also stripped. This is hardcoded and |
||
| 4992 | * can not be changed with allowable_tags. |
||
| 4993 | * </p> |
||
| 4994 | 65 | * |
|
| 4995 | * @return string the stripped string. |
||
| 4996 | */ |
||
| 4997 | 65 | public static function strip_tags($str, $allowable_tags = null) |
|
| 5004 | |||
| 5005 | 65 | /** |
|
| 5006 | * Finds position of first occurrence of a string within another, case insensitive. |
||
| 5007 | * |
||
| 5008 | * @link http://php.net/manual/en/function.mb-stripos.php |
||
| 5009 | * |
||
| 5010 | * @param string $haystack <p> |
||
| 5011 | * The string from which to get the position of the first occurrence |
||
| 5012 | * of needle |
||
| 5013 | * </p> |
||
| 5014 | * @param string $needle <p> |
||
| 5015 | * The string to find in haystack |
||
| 5016 | * </p> |
||
| 5017 | 1 | * @param int $offset [optional] <p> |
|
| 5018 | * The position in haystack |
||
| 5019 | 1 | * to start searching |
|
| 5020 | * </p> |
||
| 5021 | * @param string $encoding |
||
| 5022 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
| 5023 | * |
||
| 5024 | * @return int Return the numeric position of the first occurrence of |
||
| 5025 | * needle in the haystack |
||
| 5026 | * string, or false if needle is not found. |
||
| 5027 | */ |
||
| 5028 | public static function stripos($haystack, $needle, $offset = null, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
| 5052 | |||
| 5053 | /** |
||
| 5054 | * Returns all of haystack starting from and including the first occurrence of needle to the end. |
||
| 5055 | * |
||
| 5056 | * @param string $str |
||
| 5057 | * @param string $needle |
||
| 5058 | * @param bool $before_needle |
||
| 5059 | * |
||
| 5060 | * @return false|string |
||
| 5061 | */ |
||
| 5062 | public static function stristr($str, $needle, $before_needle = false) |
||
| 5073 | |||
| 5074 | /** |
||
| 5075 | * Get the string length, not the byte-length! |
||
| 5076 | * |
||
| 5077 | * @link http://php.net/manual/en/function.mb-strlen.php |
||
| 5078 | * |
||
| 5079 | * @param string $str The string being checked for length. |
||
| 5080 | * @param string $encoding Set the charset for e.g. "\mb_" function |
||
| 5081 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
||
| 5082 | * |
||
| 5083 | * @return int the number of characters in |
||
| 5084 | * string str having character encoding |
||
| 5085 | * encoding. A multi-byte character is |
||
| 5086 | * counted as 1. |
||
| 5087 | */ |
||
| 5088 | public static function strlen($str, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
| 5110 | |||
| 5111 | /** |
||
| 5112 | * Case insensitive string comparisons using a "natural order" algorithm. |
||
| 5113 | 10 | * |
|
| 5114 | 10 | * @param string $str1 |
|
| 5115 | * @param string $str2 |
||
| 5116 | * |
||
| 5117 | * @return int <strong>< 0</strong> if str1 is less than str2<br /> |
||
| 5118 | 10 | * <strong>> 0</strong> if str1 is greater than str2<br /> |
|
| 5119 | * <strong>0</strong> if they are equal |
||
| 5120 | */ |
||
| 5121 | public static function strnatcasecmp($str1, $str2) |
||
| 5125 | |||
| 5126 | 1 | /** |
|
| 5127 | 1 | * String comparisons using a "natural order" algorithm |
|
| 5128 | 1 | * |
|
| 5129 | * @link http://php.net/manual/en/function.strnatcmp.php |
||
| 5130 | 10 | * |
|
| 5131 | * @param string $str1 <p> |
||
| 5132 | * The first string. |
||
| 5133 | 10 | * </p> |
|
| 5134 | 1 | * @param string $str2 <p> |
|
| 5135 | 1 | * The second string. |
|
| 5136 | * </p> |
||
| 5137 | 10 | * |
|
| 5138 | * @return int Similar to other string comparison functions, this one returns < 0 if |
||
| 5139 | * str1 is less than str2; > |
||
| 5140 | * 0 if str1 is greater than |
||
| 5141 | * str2, and 0 if they are equal. |
||
| 5142 | * @since 4.0 |
||
| 5143 | * @since 5.0 |
||
| 5144 | */ |
||
| 5145 | public static function strnatcmp($str1, $str2) |
||
| 5149 | |||
| 5150 | /** |
||
| 5151 | * Binary safe case-insensitive string comparison of the first n characters |
||
| 5152 | * |
||
| 5153 | * @link http://php.net/manual/en/function.strncasecmp.php |
||
| 5154 | * |
||
| 5155 | * @param string $str1 <p> |
||
| 5156 | * The first string. |
||
| 5157 | * </p> |
||
| 5158 | * @param string $str2 <p> |
||
| 5159 | * The second string. |
||
| 5160 | * </p> |
||
| 5161 | * @param int $len <p> |
||
| 5162 | * The length of strings to be used in the comparison. |
||
| 5163 | * </p> |
||
| 5164 | * |
||
| 5165 | * @return int < 0 if <i>str1</i> is less than |
||
| 5166 | * <i>str2</i>; > 0 if <i>str1</i> is |
||
| 5167 | * greater than <i>str2</i>, and 0 if they are equal. |
||
| 5168 | * @since 4.0.4 |
||
| 5169 | * @since 5.0 |
||
| 5170 | */ |
||
| 5171 | public static function strncasecmp($str1, $str2, $len) |
||
| 5175 | |||
| 5176 | /** |
||
| 5177 | * Binary safe string comparison of the first n characters |
||
| 5178 | * |
||
| 5179 | * @link http://php.net/manual/en/function.strncmp.php |
||
| 5180 | * |
||
| 5181 | * @param string $str1 <p> |
||
| 5182 | * The first string. |
||
| 5183 | * </p> |
||
| 5184 | * @param string $str2 <p> |
||
| 5185 | * The second string. |
||
| 5186 | 1 | * </p> |
|
| 5187 | * @param int $len <p> |
||
| 5188 | 1 | * Number of characters to use in the comparison. |
|
| 5189 | * </p> |
||
| 5190 | 1 | * |
|
| 5191 | * @return int < 0 if <i>str1</i> is less than |
||
| 5192 | * <i>str2</i>; > 0 if <i>str1</i> |
||
| 5193 | * is greater than <i>str2</i>, and 0 if they are |
||
| 5194 | * equal. |
||
| 5195 | * @since 4.0 |
||
| 5196 | * @since 5.0 |
||
| 5197 | */ |
||
| 5198 | public static function strncmp($str1, $str2, $len) |
||
| 5202 | 4 | ||
| 5203 | /** |
||
| 5204 | * Search a string for any of a set of characters |
||
| 5205 | * |
||
| 5206 | * @link http://php.net/manual/en/function.strpbrk.php |
||
| 5207 | * |
||
| 5208 | * @param string $haystack <p> |
||
| 5209 | * The string where char_list is looked for. |
||
| 5210 | * </p> |
||
| 5211 | * @param string $char_list <p> |
||
| 5212 | * This parameter is case sensitive. |
||
| 5213 | * </p> |
||
| 5214 | * |
||
| 5215 | * @return string a string starting from the character found, or false if it is |
||
| 5216 | * not found. |
||
| 5217 | * @since 5.0 |
||
| 5218 | */ |
||
| 5219 | public static function strpbrk($haystack, $char_list) |
||
| 5234 | |||
| 5235 | 1 | /** |
|
| 5236 | * Find position of first occurrence of string in a string. |
||
| 5237 | 1 | * |
|
| 5238 | * @link http://php.net/manual/en/function.mb-strpos.php |
||
| 5239 | * |
||
| 5240 | * @param string $haystack <p> |
||
| 5241 | * The string being checked. |
||
| 5242 | * </p> |
||
| 5243 | * @param string $needle <p> |
||
| 5244 | * The position counted from the beginning of haystack. |
||
| 5245 | * </p> |
||
| 5246 | * @param int $offset [optional] <p> |
||
| 5247 | * The search offset. If it is not specified, 0 is used. |
||
| 5248 | * </p> |
||
| 5249 | 1 | * @param string $encoding |
|
| 5250 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string. |
||
| 5251 | 1 | * |
|
| 5252 | * @return int The numeric position of the first occurrence of needle in the haystack string.<br /> |
||
| 5253 | * If needle is not found it returns false. |
||
| 5254 | */ |
||
| 5255 | public static function strpos($haystack, $needle, $offset = 0, $encoding = 'UTF-8', $cleanUtf8 = false) |
||
| 5311 | |||
| 5312 | /** |
||
| 5313 | * Finds the last occurrence of a character in a string within another. |
||
| 5314 | * |
||
| 5315 | * @link http://php.net/manual/en/function.mb-strrchr.php |
||
| 5316 | * |
||
| 5317 | * @param string $haystack <p> |
||
| 5318 | * The string from which to get the last occurrence |
||
| 5319 | * of needle |
||
| 5320 | * </p> |
||
| 5321 | * @param string $needle <p> |
||
| 5322 | * The string to find in haystack |
||
| 5323 | * </p> |
||
| 5324 | * @param bool $part [optional] <p> |
||
| 5325 | * Determines which portion of haystack |
||
| 5326 | * this function returns. |
||
| 5327 | * If set to true, it returns all of haystack |
||
| 5328 | * from the beginning to the last occurrence of needle. |
||
| 5329 | * If set to false, it returns all of haystack |
||
| 5330 | * from the last occurrence of needle to the end, |
||
| 5331 | * </p> |
||
| 5332 | * @param string $encoding [optional] <p> |
||
| 5333 | * Character encoding name to use. |
||
| 5334 | * If it is omitted, internal character encoding is used. |
||
| 5335 | * </p> |
||
| 5336 | * |
||
| 5337 | * @return string the portion of haystack. |
||
| 5338 | * or false if needle is not found. |
||
| 5339 | 6 | */ |
|
| 5340 | public static function strrchr($haystack, $needle, $part = false, $encoding = 'UTF-8') |
||
| 5346 | |||
| 5347 | /** |
||
| 5348 | * Reverses characters order in the string. |
||
| 5349 | * |
||
| 5350 | * @param string $str The input string |
||
| 5351 | * |
||
| 5352 | * @return string The string with characters in the reverse sequence |
||
| 5353 | */ |
||
| 5354 | public static function strrev($str) |
||
| 5358 | |||
| 5359 | /** |
||
| 5360 | * Finds the last occurrence of a character in a string within another, case insensitive. |
||
| 5361 | * |
||
| 5362 | * @link http://php.net/manual/en/function.mb-strrichr.php |
||
| 5363 | * |
||
| 5364 | * @param string $haystack <p> |
||
| 5365 | * The string from which to get the last occurrence |
||
| 5366 | 1 | * of needle |
|
| 5367 | * </p> |
||
| 5368 | 1 | * @param string $needle <p> |
|
| 5369 | * The string to find in haystack |
||
| 5370 | 1 | * </p> |
|
| 5371 | * @param bool $part [optional] <p> |
||
| 5372 | * Determines which portion of haystack |
||
| 5373 | * this function returns. |
||
| 5374 | * If set to true, it returns all of haystack |
||
| 5375 | * from the beginning to the last occurrence of needle. |
||
| 5376 | * If set to false, it returns all of haystack |
||
| 5377 | * from the last occurrence of needle to the end, |
||
| 5378 | * </p> |
||
| 5379 | * @param string $encoding [optional] <p> |
||
| 5380 | * Character encoding name to use. |
||
| 5381 | * If it is omitted, internal character encoding is used. |
||
| 5382 | * </p> |
||
| 5383 | 10 | * |
|
| 5384 | * @return string the portion of haystack. |
||
| 5385 | 10 | * or false if needle is not found. |
|
| 5386 | 10 | */ |
|
| 5387 | 10 | public static function strrichr($haystack, $needle, $part = false, $encoding = 'UTF-8') |
|
| 5393 | |||
| 5394 | 10 | /** |
|
| 5395 | * Find position of last occurrence of a case-insensitive string. |
||
| 5396 | 10 | * |
|
| 5397 | * @param string $haystack The string to look in |
||
| 5398 | 10 | * @param string $needle The string to look for |
|
| 5399 | 1 | * @param int $offset (Optional) Number of characters to ignore in the beginning or end |
|
| 5400 | 1 | * |
|
| 5401 | * @return int The position of offset |
||
| 5402 | */ |
||
| 5403 | 10 | public static function strripos($haystack, $needle, $offset = 0) |
|
| 5407 | |||
| 5408 | 10 | /** |
|
| 5409 | * Find position of last occurrence of a string in a string. |
||
| 5410 | * |
||
| 5411 | * @link http://php.net/manual/en/function.mb-strrpos.php |
||
| 5412 | * |
||
| 5413 | * @param string $haystack <p> |
||
| 5414 | * The string being checked, for the last occurrence |
||
| 5415 | * of needle |
||
| 5416 | * </p> |
||
| 5417 | * @param string|int $needle <p> |
||
| 5418 | * The string to find in haystack. |
||
| 5419 | * Or a code point as int. |
||
| 5420 | * </p> |
||
| 5421 | * @param int $offset [optional] May be specified to begin searching an arbitrary number of characters into |
||
| 5422 | * the string. Negative values will stop searching at an arbitrary point |
||
| 5423 | * prior to the end of the string. |
||
| 5424 | 20 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
|
| 5425 | * |
||
| 5426 | 20 | * @return int the numeric position of |
|
| 5427 | * the last occurrence of needle in the |
||
| 5428 | 20 | * haystack string. If |
|
| 5429 | 5 | * needle is not found, it returns false. |
|
| 5430 | */ |
||
| 5431 | public static function strrpos($haystack, $needle, $offset = null, $cleanUtf8 = false) |
||
| 5483 | |||
| 5484 | /** |
||
| 5485 | * Finds the length of the initial segment of a string consisting entirely of characters contained within a given |
||
| 5486 | * mask. |
||
| 5487 | * |
||
| 5488 | * @param string $str |
||
| 5489 | * @param string $mask |
||
| 5490 | * @param int $offset |
||
| 5491 | * @param int $length |
||
| 5492 | * |
||
| 5493 | * @return int|null |
||
| 5494 | */ |
||
| 5495 | public static function strspn($str, $mask, $offset = 0, $length = 2147483647) |
||
| 5503 | 1 | ||
| 5504 | /** |
||
| 5505 | 1 | * Returns part of haystack string from the first occurrence of needle to the end of haystack. |
|
| 5506 | * |
||
| 5507 | * @link http://php.net/manual/en/function.grapheme-strstr.php |
||
| 5508 | * |
||
| 5509 | * @param string $haystack <p> |
||
| 5510 | * The input string. Must be valid UTF-8. |
||
| 5511 | * </p> |
||
| 5512 | * @param string $needle <p> |
||
| 5513 | * The string to look for. Must be valid UTF-8. |
||
| 5514 | * </p> |
||
| 5515 | * @param bool $before_needle [optional] <p> |
||
| 5516 | * If <b>TRUE</b>, grapheme_strstr() returns the part of the |
||
| 5517 | * haystack before the first occurrence of the needle (excluding the needle). |
||
| 5518 | * </p> |
||
| 5519 | * |
||
| 5520 | 1 | * @return string the portion of string, or FALSE if needle is not found. |
|
| 5521 | */ |
||
| 5522 | public static function strstr($haystack, $needle, $before_needle = false) |
||
| 5528 | |||
| 5529 | /** |
||
| 5530 | 1 | * Unicode transformation for case-less matching. |
|
| 5531 | * |
||
| 5532 | * @link http://unicode.org/reports/tr21/tr21-5.html |
||
| 5533 | 1 | * |
|
| 5534 | * @param string $str |
||
| 5535 | 1 | * @param bool $full |
|
| 5536 | * |
||
| 5537 | * @return string |
||
| 5538 | */ |
||
| 5539 | public static function strtocasefold($str, $full = true) |
||
| 5566 | |||
| 5567 | 37 | /** |
|
| 5568 | * (PHP 4 >= 4.3.0, PHP 5)<br/> |
||
| 5569 | 37 | * Make a string lowercase. |
|
| 5570 | * |
||
| 5571 | * @link http://php.net/manual/en/function.mb-strtolower.php |
||
| 5572 | * |
||
| 5573 | 1 | * @param string $str <p> |
|
| 5574 | 1 | * The string being lowercased. |
|
| 5575 | * </p> |
||
| 5576 | 37 | * @param string $encoding |
|
| 5577 | 22 | * |
|
| 5578 | 22 | * @return string str with all alphabetic characters converted to lowercase. |
|
| 5579 | 33 | */ |
|
| 5580 | public static function strtolower($str, $encoding = 'UTF-8') |
||
| 5593 | |||
| 5594 | /** |
||
| 5595 | * Generic case sensitive transformation for collation matching. |
||
| 5596 | * |
||
| 5597 | * @param string $s |
||
| 5598 | * |
||
| 5599 | * @return string |
||
| 5600 | */ |
||
| 5601 | protected static function strtonatfold($s) |
||
| 5605 | |||
| 5606 | /** |
||
| 5607 | * Make a string uppercase. |
||
| 5608 | * |
||
| 5609 | * @link http://php.net/manual/en/function.mb-strtoupper.php |
||
| 5610 | * |
||
| 5611 | * @param string $str <p> |
||
| 5612 | * The string being uppercased. |
||
| 5613 | * </p> |
||
| 5614 | * @param string $encoding |
||
| 5615 | * |
||
| 5616 | * @return string str with all alphabetic characters converted to uppercase. |
||
| 5617 | */ |
||
| 5618 | 1 | public static function strtoupper($str, $encoding = 'UTF-8') |
|
| 5649 | |||
| 5650 | /** |
||
| 5651 | * Translate characters or replace sub-strings. |
||
| 5652 | * |
||
| 5653 | * @link http://php.net/manual/en/function.strtr.php |
||
| 5654 | * |
||
| 5655 | * @param string $str <p> |
||
| 5656 | * The string being translated. |
||
| 5657 | * </p> |
||
| 5658 | * @param string|array $from <p> |
||
| 5659 | * The string replacing from. |
||
| 5660 | * </p> |
||
| 5661 | * @param string|array $to <p> |
||
| 5662 | * The string being translated to to. |
||
| 5663 | * </p> |
||
| 5664 | * |
||
| 5665 | 6 | * @return string This function returns a copy of str, |
|
| 5666 | * translating all occurrences of each character in |
||
| 5667 | * from to the corresponding character in |
||
| 5668 | 6 | * to. |
|
| 5669 | 1 | * @since 4.0 |
|
| 5670 | * @since 5.0 |
||
| 5671 | */ |
||
| 5672 | 1 | public static function strtr($str, $from, $to = INF) |
|
| 5691 | 1 | ||
| 5692 | 1 | /** |
|
| 5693 | 1 | * Return the width of a string. |
|
| 5694 | 1 | * |
|
| 5695 | 1 | * @param string $s |
|
| 5696 | 1 | * |
|
| 5697 | 1 | * @return int |
|
| 5698 | */ |
||
| 5699 | public static function strwidth($s) |
||
| 5706 | |||
| 5707 | 1 | /** |
|
| 5708 | * Get part of a string. |
||
| 5709 | 6 | * |
|
| 5710 | 1 | * @link http://php.net/manual/en/function.mb-substr.php |
|
| 5711 | 1 | * |
|
| 5712 | 1 | * @param string $str <p> |
|
| 5713 | 1 | * The string being checked. |
|
| 5714 | * </p> |
||
| 5715 | 1 | * @param int $start <p> |
|
| 5716 | * The first position used in str. |
||
| 5717 | * </p> |
||
| 5718 | 6 | * @param int $length [optional] <p> |
|
| 5719 | 6 | * The maximum length of the returned string. |
|
| 5720 | * </p> |
||
| 5721 | 6 | * @param string $encoding |
|
| 5722 | 4 | * @param boolean $cleanUtf8 Clean non UTF-8 chars from the string |
|
| 5723 | * |
||
| 5724 | 4 | * @return string mb_substr returns the portion of |
|
| 5725 | 4 | * str specified by the start and length parameters. |
|
| 5726 | */ |
||
| 5727 | 6 | public static function substr($str, $start = 0, $length = null, $encoding = 'UTF-8', $cleanUtf8 = false) |
|
| 5773 | |||
| 5774 | /** |
||
| 5775 | 6 | * Binary safe comparison of two strings from an offset, up to length characters. |
|
| 5776 | * |
||
| 5777 | 6 | * @param string $main_str The main string being compared. |
|
| 5778 | * @param string $str The secondary string being compared. |
||
| 5779 | * @param int $offset The start position for the comparison. If negative, it starts counting from the |
||
| 5780 | * end of the string. |
||
| 5781 | * @param int $length The length of the comparison. The default value is the largest of the length of |
||
| 5782 | * the str compared to the length of main_str less the offset. |
||
| 5783 | * @param boolean $case_insensitivity If case_insensitivity is TRUE, comparison is case insensitive. |
||
| 5784 | * |
||
| 5785 | * @return int |
||
| 5786 | */ |
||
| 5787 | public static function substr_compare($main_str, $str, $offset, $length = 2147483647, $case_insensitivity = false) |
||
| 5794 | |||
| 5795 | /** |
||
| 5796 | * Count the number of substring occurrences |
||
| 5797 | * |
||
| 5798 | * @link http://php.net/manual/en/function.substr-count.php |
||
| 5799 | * |
||
| 5800 | * @param string $haystack <p> |
||
| 5801 | * The string to search in |
||
| 5802 | * </p> |
||
| 5803 | * @param string $needle <p> |
||
| 5804 | * The substring to search for |
||
| 5805 | * </p> |
||
| 5806 | * @param int $offset [optional] <p> |
||
| 5807 | * The offset where to start counting |
||
| 5808 | * </p> |
||
| 5809 | * @param int $length [optional] <p> |
||
| 5810 | * The maximum length after the specified offset to search for the |
||
| 5811 | * substring. It outputs a warning if the offset plus the length is |
||
| 5812 | 7 | * greater than the haystack length. |
|
| 5813 | * </p> |
||
| 5814 | 7 | * |
|
| 5815 | * @return int This functions returns an integer. |
||
| 5816 | 7 | * @since 4.0 |
|
| 5817 | * @since 5.0 |
||
| 5818 | 7 | */ |
|
| 5819 | 2 | public static function substr_count($haystack, $needle, $offset = 0, $length = null) |
|
| 5839 | 3 | ||
| 5840 | 3 | /** |
|
| 5841 | * Replace text within a portion of a string. |
||
| 5842 | * |
||
| 5843 | * source: https://gist.github.com/stemar/8287074 |
||
| 5844 | * |
||
| 5845 | * @param string|array $str |
||
| 5846 | * @param string|array $replacement |
||
| 5847 | * @param int|array $start |
||
| 5848 | * @param null|int|array $length |
||
| 5849 | * |
||
| 5850 | * @return array|string |
||
| 5851 | */ |
||
| 5852 | 3 | public static function substr_replace($str, $replacement, $start, $length = null) |
|
| 5917 | |||
| 5918 | /** |
||
| 5919 | * Returns a case swapped version of the string. |
||
| 5920 | * |
||
| 5921 | * @param string $str |
||
| 5922 | * @param string $encoding |
||
| 5923 | * |
||
| 5924 | * @return string each character's case swapped |
||
| 5925 | */ |
||
| 5926 | public static function swapCase($str, $encoding = 'UTF-8') |
||
| 5952 | |||
| 5953 | 20 | /** |
|
| 5954 | 20 | * alias for "UTF8::to_ascii()" |
|
| 5955 | 20 | * |
|
| 5956 | 20 | * @param string $s The input string e.g. a UTF-8 String |
|
| 5957 | * @param string $subst_chr |
||
| 5958 | 20 | * |
|
| 5959 | * @return string |
||
| 5960 | 18 | */ |
|
| 5961 | 17 | public static function toAscii($s, $subst_chr = '?') |
|
| 5965 | 5 | ||
| 5966 | 5 | /** |
|
| 5967 | * alias for "UTF8::to_latin1()" |
||
| 5968 | * |
||
| 5969 | 20 | * @param $str |
|
| 5970 | * |
||
| 5971 | 18 | * @return string |
|
| 5972 | 14 | */ |
|
| 5973 | 14 | public static function toLatin1($str) |
|
| 5977 | 8 | ||
| 5978 | /** |
||
| 5979 | * alias for "UTF8::to_utf8" |
||
| 5980 | 19 | * |
|
| 5981 | * @param string $str |
||
| 5982 | 9 | * |
|
| 5983 | 3 | * @return string |
|
| 5984 | 3 | */ |
|
| 5985 | 3 | public static function toUTF8($str) |
|
| 5989 | |||
| 5990 | /** |
||
| 5991 | 9 | * convert to ASCII |
|
| 5992 | 6 | * |
|
| 5993 | 6 | * @param string $s The input string e.g. a UTF-8 String |
|
| 5994 | 6 | * @param string $subst_chr |
|
| 5995 | * |
||
| 5996 | * @return string |
||
| 5997 | 20 | */ |
|
| 5998 | public static function to_ascii($s, $subst_chr = '?') |
||
| 6069 | |||
| 6070 | /** |
||
| 6071 | * alias for "UTF8::to_win1252()" |
||
| 6072 | * |
||
| 6073 | 26 | * @param string $str |
|
| 6074 | * |
||
| 6075 | 26 | * @return array|string |
|
| 6076 | */ |
||
| 6077 | 26 | public static function to_iso8859($str) |
|
| 6081 | |||
| 6082 | 22 | /** |
|
| 6083 | 6 | * alias for "UTF8::to_win1252()" |
|
| 6084 | * |
||
| 6085 | * @param string|array $str |
||
| 6086 | 16 | * |
|
| 6087 | * @return string|array |
||
| 6088 | */ |
||
| 6089 | public static function to_latin1($str) |
||
| 6093 | |||
| 6094 | /** |
||
| 6095 | * This function leaves UTF8 characters alone, while converting almost all non-UTF8 to UTF8. |
||
| 6096 | 14 | * |
|
| 6097 | * - It assumes that the encoding of the original string is either WINDOWS-1252 or ISO-8859-1. |
||
| 6098 | 14 | * |
|
| 6099 | * - It may fail to convert characters to UTF-8 if they fall into one of these scenarios: |
||
| 6100 | * |
||
| 6101 | * 1) when any of these characters: ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞß |
||
| 6102 | * are followed by any of these: ("group B") |
||
| 6103 | * ¡¢£¤¥¦§¨©ª«¬®¯°±²³´µ¶•¸¹º»¼½¾¿ |
||
| 6104 | * For example: %ABREPRESENT%C9%BB. «REPRESENTÉ» |
||
| 6105 | * The "«" (%AB) character will be converted, but the "É" followed by "»" (%C9%BB) |
||
| 6106 | * is also a valid unicode character, and will be left unchanged. |
||
| 6107 | * |
||
| 6108 | * 2) when any of these: àáâãäåæçèéêëìíîï are followed by TWO chars from group B, |
||
| 6109 | * 3) when any of these: ðñòó are followed by THREE chars from group B. |
||
| 6110 | * |
||
| 6111 | * @param string|array $str Any string or array. |
||
| 6112 | * |
||
| 6113 | * @return string The same string, but UTF8 encoded. |
||
| 6114 | */ |
||
| 6115 | public static function to_utf8($str) |
||
| 6221 | |||
| 6222 | /** |
||
| 6223 | * Convert a string into "win1252"-encoding. |
||
| 6224 | * |
||
| 6225 | * @param string|array $str |
||
| 6226 | * |
||
| 6227 | * @return string|array |
||
| 6228 | */ |
||
| 6229 | protected static function to_win1252($str) |
||
| 6249 | |||
| 6250 | /** |
||
| 6251 | * Strip whitespace or other characters from beginning or end of a UTF-8 string. |
||
| 6252 | * |
||
| 6253 | * INFO: This is slower then "trim()" |
||
| 6254 | * |
||
| 6255 | * But we can only use the original-function, if we use <= 7-Bit in the string / chars |
||
| 6256 | * but the check for ACSII (7-Bit) cost more time, then we can safe here. |
||
| 6257 | * |
||
| 6258 | * @param string $str The string to be trimmed |
||
| 6259 | * @param string $chars Optional characters to be stripped |
||
| 6260 | * |
||
| 6261 | * @return string The trimmed string |
||
| 6262 | */ |
||
| 6263 | public static function trim($str = '', $chars = INF) |
||
| 6278 | |||
| 6279 | /** |
||
| 6280 | * Makes string's first char uppercase. |
||
| 6281 | * |
||
| 6282 | * @param string $str The input string |
||
| 6283 | * |
||
| 6284 | * @return string The resulting string |
||
| 6285 | */ |
||
| 6286 | public static function ucfirst($str) |
||
| 6290 | |||
| 6291 | /** |
||
| 6292 | * alias for "UTF8::ucfirst" |
||
| 6293 | * |
||
| 6294 | * @param $str |
||
| 6295 | * |
||
| 6296 | * @return string |
||
| 6297 | */ |
||
| 6298 | public static function ucword($str) |
||
| 6302 | |||
| 6303 | /** |
||
| 6304 | * Uppercase for all words in the string. |
||
| 6305 | * |
||
| 6306 | * @param string $str |
||
| 6307 | * @param array $exceptions |
||
| 6308 | * |
||
| 6309 | * @return string |
||
| 6310 | */ |
||
| 6311 | public static function ucwords($str, $exceptions = array()) |
||
| 6344 | |||
| 6345 | /** |
||
| 6346 | * Multi decode html entity & fix urlencoded-win1252-chars. |
||
| 6347 | * |
||
| 6348 | * e.g: |
||
| 6349 | * 'Düsseldorf' => 'Düsseldorf' |
||
| 6350 | * 'D%FCsseldorf' => 'Düsseldorf' |
||
| 6351 | * 'Düsseldorf' => 'Düsseldorf' |
||
| 6352 | * 'D%26%23xFC%3Bsseldorf' => 'Düsseldorf' |
||
| 6353 | * 'Düsseldorf' => 'Düsseldorf' |
||
| 6354 | * 'D%C3%BCsseldorf' => 'Düsseldorf' |
||
| 6355 | * 'D%C3%83%C2%BCsseldorf' => 'Düsseldorf' |
||
| 6356 | * 'D%25C3%2583%25C2%25BCsseldorf' => 'Düsseldorf' |
||
| 6357 | * |
||
| 6358 | * @param string $str |
||
| 6359 | * |
||
| 6360 | * @return string |
||
| 6361 | */ |
||
| 6362 | public static function urldecode($str) |
||
| 6385 | |||
| 6386 | /** |
||
| 6387 | * Return a array with "urlencoded"-win1252 -> UTF-8 |
||
| 6388 | * |
||
| 6389 | * @return mixed |
||
| 6390 | */ |
||
| 6391 | public static function urldecode_fix_win1252_chars() |
||
| 6622 | |||
| 6623 | /** |
||
| 6624 | * Decodes an UTF-8 string to ISO-8859-1. |
||
| 6625 | * |
||
| 6626 | * @param string $str |
||
| 6627 | * |
||
| 6628 | * @return string |
||
| 6629 | */ |
||
| 6630 | public static function utf8_decode($str) |
||
| 6653 | |||
| 6654 | /** |
||
| 6655 | * Encodes an ISO-8859-1 string to UTF-8. |
||
| 6656 | * |
||
| 6657 | * @param string $str |
||
| 6658 | * |
||
| 6659 | * @return string |
||
| 6660 | */ |
||
| 6661 | public static function utf8_encode($str) |
||
| 6680 | |||
| 6681 | /** |
||
| 6682 | * fix -> utf8-win1252 chars |
||
| 6683 | * |
||
| 6684 | * If you received an UTF-8 string that was converted from Windows-1252 as it was ISO-8859-1 |
||
| 6685 | * (ignoring Windows-1252 chars from 80 to 9F) use this function to fix it. |
||
| 6686 | * See: http://en.wikipedia.org/wiki/Windows-1252 |
||
| 6687 | * |
||
| 6688 | * @deprecated use "UTF8::fix_simple_utf8()" |
||
| 6689 | * |
||
| 6690 | * @param string $str |
||
| 6691 | * |
||
| 6692 | * @return string |
||
| 6693 | */ |
||
| 6694 | public static function utf8_fix_win1252_chars($str) |
||
| 6698 | |||
| 6699 | /** |
||
| 6700 | * Returns an array with all utf8 whitespace characters. |
||
| 6701 | * |
||
| 6702 | * @see : http://www.bogofilter.org/pipermail/bogofilter/2003-March/001889.html |
||
| 6703 | * |
||
| 6704 | * @author: Derek E. [email protected] |
||
| 6705 | * |
||
| 6706 | * @return array an array with all known whitespace characters as values and the type of whitespace as keys |
||
| 6707 | * as defined in above URL |
||
| 6708 | */ |
||
| 6709 | public static function whitespace_table() |
||
| 6713 | |||
| 6714 | /** |
||
| 6715 | * Limit the number of words in a string. |
||
| 6716 | * |
||
| 6717 | * @param string $str |
||
| 6718 | * @param int $words |
||
| 6719 | * @param string $strAddOn |
||
| 6720 | * |
||
| 6721 | * @return string |
||
| 6722 | */ |
||
| 6723 | public static function words_limit($str, $words = 100, $strAddOn = '...') |
||
| 6749 | |||
| 6750 | /** |
||
| 6751 | * Wraps a string to a given number of characters |
||
| 6752 | * |
||
| 6753 | * @link http://php.net/manual/en/function.wordwrap.php |
||
| 6754 | * |
||
| 6755 | * @param string $str <p> |
||
| 6756 | * The input string. |
||
| 6757 | * </p> |
||
| 6758 | * @param int $width [optional] <p> |
||
| 6759 | * The column width. |
||
| 6760 | * </p> |
||
| 6761 | * @param string $break [optional] <p> |
||
| 6762 | * The line is broken using the optional |
||
| 6763 | * break parameter. |
||
| 6764 | * </p> |
||
| 6765 | * @param bool $cut [optional] <p> |
||
| 6766 | * If the cut is set to true, the string is |
||
| 6767 | * always wrapped at or before the specified width. So if you have |
||
| 6768 | * a word that is larger than the given width, it is broken apart. |
||
| 6769 | * (See second example). |
||
| 6770 | * </p> |
||
| 6771 | * |
||
| 6772 | * @return string the given string wrapped at the specified column. |
||
| 6773 | * @since 4.0.2 |
||
| 6774 | * @since 5.0 |
||
| 6775 | */ |
||
| 6776 | public static function wordwrap($str, $width = 75, $break = "\n", $cut = false) |
||
| 6831 | |||
| 6832 | /** |
||
| 6833 | * Returns an array of Unicode White Space characters. |
||
| 6834 | * |
||
| 6835 | * @return array An array with numeric code point as key and White Space Character as value. |
||
| 6836 | */ |
||
| 6837 | public static function ws() |
||
| 6841 | |||
| 6842 | } |
||
| 6843 |
In PHP, under loose comparison (like
==, or!=, orswitchconditions), values of different types might be equal.For
stringvalues, the empty string''is a special case, in particular the following results might be unexpected: