Passed
Push — master ( fd4966...1d76af )
by Lars
05:05
created

UTF8::str_replace_ending()   A

Complexity

Conditions 6
Paths 8

Size

Total Lines 21
Code Lines 10

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 11
CRAP Score 6

Importance

Changes 0
Metric Value
cc 6
eloc 10
nc 8
nop 3
dl 0
loc 21
ccs 11
cts 11
cp 1
crap 6
rs 9.2222
c 0
b 0
f 0
1
<?php
2
3
declare(strict_types=1);
4
5
namespace voku\helper;
6
7
final class UTF8
8
{
9
    // (CRLF|([ZWNJ-ZWJ]|T+|L*(LV?V+|LV|LVT)T*|L+|[^Control])[Extend]*|[Control])
10
    // This regular expression is a work around for http://bugs.exim.org/1279
11
    const GRAPHEME_CLUSTER_RX = "(?:\r\n|(?:[ -~\x{200C}\x{200D}]|[ᆨ-ᇹ]+|[ᄀ-ᅟ]*(?:[가개갸걔거게겨계고과괘괴교구궈궤귀규그긔기까깨꺄꺠꺼께껴꼐꼬꽈꽤꾀꾜꾸꿔꿰뀌뀨끄끠끼나내냐냬너네녀녜노놔놰뇌뇨누눠눼뉘뉴느늬니다대댜댸더데뎌뎨도돠돼되됴두둬뒈뒤듀드듸디따때땨떄떠떼뗘뗴또똬뙈뙤뚀뚜뚸뛔뛰뜌뜨띄띠라래랴럐러레려례로롸뢔뢰료루뤄뤠뤼류르릐리마매먀먜머메며몌모뫄뫠뫼묘무뭐뭬뮈뮤므믜미바배뱌뱨버베벼볘보봐봬뵈뵤부붜붸뷔뷰브븨비빠빼뺘뺴뻐뻬뼈뼤뽀뽜뽸뾔뾰뿌뿨쀄쀠쀼쁘쁴삐사새샤섀서세셔셰소솨쇄쇠쇼수숴쉐쉬슈스싀시싸쌔쌰썌써쎄쎠쎼쏘쏴쐐쐬쑈쑤쒀쒜쒸쓔쓰씌씨아애야얘어에여예오와왜외요우워웨위유으의이자재쟈쟤저제져졔조좌좨죄죠주줘줴쥐쥬즈즤지짜째쨔쨰쩌쩨쪄쪠쪼쫘쫴쬐쬬쭈쭤쮀쮜쮸쯔쯰찌차채챠챼처체쳐쳬초촤쵀최쵸추춰췌취츄츠츼치카캐캬컈커케켜켸코콰쾌쾨쿄쿠쿼퀘퀴큐크킈키타태탸턔터테텨톄토톼퇘퇴툐투퉈퉤튀튜트틔티파패퍄퍠퍼페펴폐포퐈퐤푀표푸풔풰퓌퓨프픠피하해햐햬허헤혀혜호화홰회효후훠훼휘휴흐희히]?[ᅠ-ᆢ]+|[가-힣])[ᆨ-ᇹ]*|[ᄀ-ᅟ]+|[^\p{Cc}\p{Cf}\p{Zl}\p{Zp}])[\p{Mn}\p{Me}\x{09BE}\x{09D7}\x{0B3E}\x{0B57}\x{0BBE}\x{0BD7}\x{0CC2}\x{0CD5}\x{0CD6}\x{0D3E}\x{0D57}\x{0DCF}\x{0DDF}\x{200C}\x{200D}\x{1D165}\x{1D16E}-\x{1D172}]*|[\p{Cc}\p{Cf}\p{Zl}\p{Zp}])";
12
13
    /**
14
     * Bom => Byte-Length
15
     *
16
     * INFO: https://en.wikipedia.org/wiki/Byte_order_mark
17
     *
18
     * @var array
19
     */
20
    private static $BOM = [
21
        "\xef\xbb\xbf"     => 3, // UTF-8 BOM
22
        ''              => 6, // UTF-8 BOM as "WINDOWS-1252" (one char has [maybe] more then one byte ...)
23
        "\x00\x00\xfe\xff" => 4, // UTF-32 (BE) BOM
24
        '  þÿ'             => 6, // UTF-32 (BE) BOM as "WINDOWS-1252"
25
        "\xff\xfe\x00\x00" => 4, // UTF-32 (LE) BOM
26
        'ÿþ  '             => 6, // UTF-32 (LE) BOM as "WINDOWS-1252"
27
        "\xfe\xff"         => 2, // UTF-16 (BE) BOM
28
        'þÿ'               => 4, // UTF-16 (BE) BOM as "WINDOWS-1252"
29
        "\xff\xfe"         => 2, // UTF-16 (LE) BOM
30
        'ÿþ'               => 4, // UTF-16 (LE) BOM as "WINDOWS-1252"
31
    ];
32
33
    /**
34
     * Numeric code point => UTF-8 Character
35
     *
36
     * url: http://www.w3schools.com/charsets/ref_utf_punctuation.asp
37
     *
38
     * @var array
39
     */
40
    private static $WHITESPACE = [
41
        // NUL Byte
42
        0 => "\x0",
43
        // Tab
44
        9 => "\x9",
45
        // New Line
46
        10 => "\xa",
47
        // Vertical Tab
48
        11 => "\xb",
49
        // Carriage Return
50
        13 => "\xd",
51
        // Ordinary Space
52
        32 => "\x20",
53
        // NO-BREAK SPACE
54
        160 => "\xc2\xa0",
55
        // OGHAM SPACE MARK
56
        5760 => "\xe1\x9a\x80",
57
        // MONGOLIAN VOWEL SEPARATOR
58
        6158 => "\xe1\xa0\x8e",
59
        // EN QUAD
60
        8192 => "\xe2\x80\x80",
61
        // EM QUAD
62
        8193 => "\xe2\x80\x81",
63
        // EN SPACE
64
        8194 => "\xe2\x80\x82",
65
        // EM SPACE
66
        8195 => "\xe2\x80\x83",
67
        // THREE-PER-EM SPACE
68
        8196 => "\xe2\x80\x84",
69
        // FOUR-PER-EM SPACE
70
        8197 => "\xe2\x80\x85",
71
        // SIX-PER-EM SPACE
72
        8198 => "\xe2\x80\x86",
73
        // FIGURE SPACE
74
        8199 => "\xe2\x80\x87",
75
        // PUNCTUATION SPACE
76
        8200 => "\xe2\x80\x88",
77
        // THIN SPACE
78
        8201 => "\xe2\x80\x89",
79
        //HAIR SPACE
80
        8202 => "\xe2\x80\x8a",
81
        // LINE SEPARATOR
82
        8232 => "\xe2\x80\xa8",
83
        // PARAGRAPH SEPARATOR
84
        8233 => "\xe2\x80\xa9",
85
        // NARROW NO-BREAK SPACE
86
        8239 => "\xe2\x80\xaf",
87
        // MEDIUM MATHEMATICAL SPACE
88
        8287 => "\xe2\x81\x9f",
89
        // IDEOGRAPHIC SPACE
90
        12288 => "\xe3\x80\x80",
91
    ];
92
93
    /**
94
     * @var array
95
     */
96
    private static $WHITESPACE_TABLE = [
97
        'SPACE'                     => "\x20",
98
        'NO-BREAK SPACE'            => "\xc2\xa0",
99
        'OGHAM SPACE MARK'          => "\xe1\x9a\x80",
100
        'EN QUAD'                   => "\xe2\x80\x80",
101
        'EM QUAD'                   => "\xe2\x80\x81",
102
        'EN SPACE'                  => "\xe2\x80\x82",
103
        'EM SPACE'                  => "\xe2\x80\x83",
104
        'THREE-PER-EM SPACE'        => "\xe2\x80\x84",
105
        'FOUR-PER-EM SPACE'         => "\xe2\x80\x85",
106
        'SIX-PER-EM SPACE'          => "\xe2\x80\x86",
107
        'FIGURE SPACE'              => "\xe2\x80\x87",
108
        'PUNCTUATION SPACE'         => "\xe2\x80\x88",
109
        'THIN SPACE'                => "\xe2\x80\x89",
110
        'HAIR SPACE'                => "\xe2\x80\x8a",
111
        'LINE SEPARATOR'            => "\xe2\x80\xa8",
112
        'PARAGRAPH SEPARATOR'       => "\xe2\x80\xa9",
113
        'ZERO WIDTH SPACE'          => "\xe2\x80\x8b",
114
        'NARROW NO-BREAK SPACE'     => "\xe2\x80\xaf",
115
        'MEDIUM MATHEMATICAL SPACE' => "\xe2\x81\x9f",
116
        'IDEOGRAPHIC SPACE'         => "\xe3\x80\x80",
117
    ];
118
119
    /**
120
     * bidirectional text chars
121
     *
122
     * url: https://www.w3.org/International/questions/qa-bidi-unicode-controls
123
     *
124
     * @var array
125
     */
126
    private static $BIDI_UNI_CODE_CONTROLS_TABLE = [
127
        // LEFT-TO-RIGHT EMBEDDING (use -> dir = "ltr")
128
        8234 => "\xE2\x80\xAA",
129
        // RIGHT-TO-LEFT EMBEDDING (use -> dir = "rtl")
130
        8235 => "\xE2\x80\xAB",
131
        // POP DIRECTIONAL FORMATTING // (use -> </bdo>)
132
        8236 => "\xE2\x80\xAC",
133
        // LEFT-TO-RIGHT OVERRIDE // (use -> <bdo dir = "ltr">)
134
        8237 => "\xE2\x80\xAD",
135
        // RIGHT-TO-LEFT OVERRIDE // (use -> <bdo dir = "rtl">)
136
        8238 => "\xE2\x80\xAE",
137
        // LEFT-TO-RIGHT ISOLATE // (use -> dir = "ltr")
138
        8294 => "\xE2\x81\xA6",
139
        // RIGHT-TO-LEFT ISOLATE // (use -> dir = "rtl")
140
        8295 => "\xE2\x81\xA7",
141
        // FIRST STRONG ISOLATE // (use -> dir = "auto")
142
        8296 => "\xE2\x81\xA8",
143
        // POP DIRECTIONAL ISOLATE
144
        8297 => "\xE2\x81\xA9",
145
    ];
146
147
    /**
148
     * @var array
149
     */
150
    private static $COMMON_CASE_FOLD = [
151
        'upper' => [
152
            'µ',
153
            'ſ',
154
            "\xCD\x85",
155
            'ς',
156
            'ẞ',
157
            "\xCF\x90",
158
            "\xCF\x91",
159
            "\xCF\x95",
160
            "\xCF\x96",
161
            "\xCF\xB0",
162
            "\xCF\xB1",
163
            "\xCF\xB5",
164
            "\xE1\xBA\x9B",
165
            "\xE1\xBE\xBE",
166
        ],
167
        'lower' => [
168
            'μ',
169
            's',
170
            'ι',
171
            'σ',
172
            'ß',
173
            'β',
174
            'θ',
175
            'φ',
176
            'π',
177
            'κ',
178
            'ρ',
179
            'ε',
180
            "\xE1\xB9\xA1",
181
            'ι',
182
        ],
183
    ];
184
185
    /**
186
     * @var array
187
     */
188
    private static $SUPPORT = [];
189
190
    /**
191
     * @var array|null
192
     */
193
    private static $BROKEN_UTF8_FIX;
194
195
    /**
196
     * @var array|null
197
     */
198
    private static $WIN1252_TO_UTF8;
199
200
    /**
201
     * @var array|null
202
     */
203
    private static $INTL_TRANSLITERATOR_LIST;
204
205
    /**
206
     * @var array|null
207
     */
208
    private static $ENCODINGS;
209
210
    /**
211
     * @var array|null
212
     */
213
    private static $ORD;
214
215
    /**
216
     * @var array|null
217
     */
218
    private static $EMOJI;
219
220
    /**
221
     * @var array|null
222
     */
223
    private static $EMOJI_VALUES_CACHE;
224
225
    /**
226
     * @var array|null
227
     */
228
    private static $EMOJI_KEYS_CACHE;
229
230
    /**
231
     * @var array|null
232
     */
233
    private static $EMOJI_KEYS_REVERSIBLE_CACHE;
234
235
    /**
236
     * @var array|null
237
     */
238
    private static $CHR;
239
240
    /**
241
     * __construct()
242
     */
243 32
    public function __construct()
244
    {
245 32
    }
246
247
    /**
248
     * Return the character at the specified position: $str[1] like functionality.
249
     *
250
     * @param string $str      <p>A UTF-8 string.</p>
251
     * @param int    $pos      <p>The position of character to return.</p>
252
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
253
     *
254
     * @return string single multi-byte character
255
     */
256 3
    public static function access(string $str, int $pos, string $encoding = 'UTF-8'): string
257
    {
258 3
        if ($str === '' || $pos < 0) {
259 2
            return '';
260
        }
261
262 3
        if ($encoding === 'UTF-8') {
263 3
            return (string) \mb_substr($str, $pos, 1);
264
        }
265
266
        return (string) self::substr($str, $pos, 1, $encoding);
267
    }
268
269
    /**
270
     * Prepends UTF-8 BOM character to the string and returns the whole string.
271
     *
272
     * INFO: If BOM already existed there, the Input string is returned.
273
     *
274
     * @param string $str <p>The input string.</p>
275
     *
276
     * @return string the output string that contains BOM
277
     */
278 2
    public static function add_bom_to_string(string $str): string
279
    {
280 2
        if (self::string_has_bom($str) === false) {
281 2
            $str = self::bom() . $str;
282
        }
283
284 2
        return $str;
285
    }
286
287
    /**
288
     * Changes all keys in an array.
289
     *
290
     * @param array  $array    <p>The array to work on</p>
291
     * @param int    $case     [optional] <p> Either <strong>CASE_UPPER</strong><br>
292
     *                         or <strong>CASE_LOWER</strong> (default)</p>
293
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
294
     *
295
     * @return string[] an array with its keys lower or uppercased
296
     */
297 2
    public static function array_change_key_case(array $array, int $case = \CASE_LOWER, string $encoding = 'UTF-8'): array
298
    {
299
        if (
300 2
            $case !== \CASE_LOWER
301
            &&
302 2
            $case !== \CASE_UPPER
303
        ) {
304
            $case = \CASE_LOWER;
305
        }
306
307 2
        $return = [];
308 2
        foreach ($array as $key => &$value) {
309 2
            $key = $case === \CASE_LOWER
310 2
                ? self::strtolower((string) $key, $encoding)
311 2
                : self::strtoupper((string) $key, $encoding);
312
313 2
            $return[$key] = $value;
314
        }
315
316 2
        return $return;
317
    }
318
319
    /**
320
     * Returns the substring between $start and $end, if found, or an empty
321
     * string. An optional offset may be supplied from which to begin the
322
     * search for the start string.
323
     *
324
     * @param string $str
325
     * @param string $start    <p>Delimiter marking the start of the substring.</p>
326
     * @param string $end      <p>Delimiter marking the end of the substring.</p>
327
     * @param int    $offset   [optional] <p>Index from which to begin the search. Default: 0</p>
328
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
329
     *
330
     * @return string
331
     */
332 16
    public static function between(
333
        string $str,
334
        string $start,
335
        string $end,
336
        int $offset = 0,
337
        string $encoding = 'UTF-8'
338
    ): string {
339 16
        if ($encoding === 'UTF-8') {
340 8
            $posStart = \mb_strpos($str, $start, $offset);
341 8
            if ($posStart === false) {
342 1
                return '';
343
            }
344
345 7
            $substrIndex = $posStart + (int) \mb_strlen($start);
346 7
            $posEnd = \mb_strpos($str, $end, $substrIndex);
347
            if (
348 7
                $posEnd === false
349
                ||
350 7
                $posEnd === $substrIndex
351
            ) {
352 2
                return '';
353
            }
354
355 5
            return (string) \mb_substr($str, $substrIndex, $posEnd - $substrIndex);
356
        }
357
358 8
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
359
360 8
        $posStart = self::strpos($str, $start, $offset, $encoding);
361 8
        if ($posStart === false) {
362 1
            return '';
363
        }
364
365 7
        $substrIndex = $posStart + (int) self::strlen($start, $encoding);
366 7
        $posEnd = self::strpos($str, $end, $substrIndex, $encoding);
367
        if (
368 7
            $posEnd === false
369
            ||
370 7
            $posEnd === $substrIndex
371
        ) {
372 2
            return '';
373
        }
374
375 5
        return (string) self::substr(
376 5
            $str,
377 5
            $substrIndex,
378 5
            $posEnd - $substrIndex,
379 5
            $encoding
380
        );
381
    }
382
383
    /**
384
     * Convert binary into an string.
385
     *
386
     * @param mixed $bin 1|0
387
     *
388
     * @return string
389
     */
390 2
    public static function binary_to_str($bin): string
391
    {
392 2
        if (!isset($bin[0])) {
393
            return '';
394
        }
395
396 2
        $convert = \base_convert($bin, 2, 16);
397 2
        if ($convert === '0') {
398 1
            return '';
399
        }
400
401 2
        return \pack('H*', $convert);
402
    }
403
404
    /**
405
     * Returns the UTF-8 Byte Order Mark Character.
406
     *
407
     * INFO: take a look at UTF8::$bom for e.g. UTF-16 and UTF-32 BOM values
408
     *
409
     * @return string UTF-8 Byte Order Mark
410
     */
411 4
    public static function bom(): string
412
    {
413 4
        return "\xef\xbb\xbf";
414
    }
415
416
    /**
417
     * @alias of UTF8::chr_map()
418
     *
419
     * @param array|string $callback
420
     * @param string       $str
421
     *
422
     * @return string[]
423
     *
424
     * @see UTF8::chr_map()
425
     */
426 2
    public static function callback($callback, string $str): array
427
    {
428 2
        return self::chr_map($callback, $str);
429
    }
430
431
    /**
432
     * Returns the character at $index, with indexes starting at 0.
433
     *
434
     * @param string $str      <p>The input string.</p>
435
     * @param int    $index    <p>Position of the character.</p>
436
     * @param string $encoding [optional] <p>Default is UTF-8</p>
437
     *
438
     * @return string the character at $index
439
     */
440 9
    public static function char_at(string $str, int $index, string $encoding = 'UTF-8'): string
441
    {
442 9
        if ($encoding === 'UTF-8') {
443 5
            return (string) \mb_substr($str, $index, 1);
444
        }
445
446 4
        return (string) self::substr($str, $index, 1, $encoding);
447
    }
448
449
    /**
450
     * Returns an array consisting of the characters in the string.
451
     *
452
     * @param string $str <p>The input string.</p>
453
     *
454
     * @return string[] an array of chars
455
     */
456 3
    public static function chars(string $str): array
457
    {
458 3
        return self::str_split($str);
459
    }
460
461
    /**
462
     * This method will auto-detect your server environment for UTF-8 support.
463
     *
464
     * @return true|null
465
     *
466
     * @internal <p>You don't need to run it manually, it will be triggered if it's needed.</p>
467
     */
468 5
    public static function checkForSupport()
469
    {
470 5
        if (!isset(self::$SUPPORT['already_checked_via_portable_utf8'])) {
471
            self::$SUPPORT['already_checked_via_portable_utf8'] = true;
472
473
            // http://php.net/manual/en/book.mbstring.php
474
            self::$SUPPORT['mbstring'] = self::mbstring_loaded();
475
            self::$SUPPORT['mbstring_func_overload'] = self::mbstring_overloaded();
476
            if (self::$SUPPORT['mbstring'] === true) {
477
                \mb_internal_encoding('UTF-8');
478
                /** @noinspection UnusedFunctionResultInspection */
479
                /** @noinspection PhpComposerExtensionStubsInspection */
480
                \mb_regex_encoding('UTF-8');
481
                self::$SUPPORT['mbstring_internal_encoding'] = 'UTF-8';
482
            }
483
484
            // http://php.net/manual/en/book.iconv.php
485
            self::$SUPPORT['iconv'] = self::iconv_loaded();
486
487
            // http://php.net/manual/en/book.intl.php
488
            self::$SUPPORT['intl'] = self::intl_loaded();
489
490
            // http://php.net/manual/en/class.intlchar.php
491
            self::$SUPPORT['intlChar'] = self::intlChar_loaded();
492
493
            // http://php.net/manual/en/book.ctype.php
494
            self::$SUPPORT['ctype'] = self::ctype_loaded();
495
496
            // http://php.net/manual/en/class.finfo.php
497
            self::$SUPPORT['finfo'] = self::finfo_loaded();
498
499
            // http://php.net/manual/en/book.json.php
500
            self::$SUPPORT['json'] = self::json_loaded();
501
502
            // http://php.net/manual/en/book.pcre.php
503
            self::$SUPPORT['pcre_utf8'] = self::pcre_utf8_support();
504
505
            self::$SUPPORT['symfony_polyfill_used'] = self::symfony_polyfill_used();
506
            if (self::$SUPPORT['symfony_polyfill_used'] === true) {
507
                \mb_internal_encoding('UTF-8');
508
                self::$SUPPORT['mbstring_internal_encoding'] = 'UTF-8';
509
            }
510
511
            return true;
512
        }
513
514 5
        return null;
515
    }
516
517
    /**
518
     * Generates a UTF-8 encoded character from the given code point.
519
     *
520
     * INFO: opposite to UTF8::ord()
521
     *
522
     * @param int|string $code_point <p>The code point for which to generate a character.</p>
523
     * @param string     $encoding   [optional] <p>Default is UTF-8</p>
524
     *
525
     * @return string|null multi-byte character, returns null on failure or empty input
526
     */
527 25
    public static function chr($code_point, string $encoding = 'UTF-8')
528
    {
529
        // init
530 25
        static $CHAR_CACHE = [];
531
532 25
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
533 4
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
534
        }
535
536
        if (
537 25
            $encoding !== 'UTF-8'
538
            &&
539 25
            $encoding !== 'ISO-8859-1'
540
            &&
541 25
            $encoding !== 'WINDOWS-1252'
542
            &&
543 25
            self::$SUPPORT['mbstring'] === false
544
        ) {
545
            \trigger_error('UTF8::chr() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
546
        }
547
548 25
        $cacheKey = $code_point . $encoding;
549 25
        if (isset($CHAR_CACHE[$cacheKey]) === true) {
550 23
            return $CHAR_CACHE[$cacheKey];
551
        }
552
553 13
        if ($code_point <= 127) { // use "simple"-char only until "\x80"
554
555 12
            if (self::$CHR === null) {
556
                self::$CHR = (array) self::getData('chr');
557
            }
558
559
            /**
560
             * @psalm-suppress PossiblyNullArrayAccess
561
             */
562 12
            $chr = self::$CHR[$code_point];
563
564 12
            if ($encoding !== 'UTF-8') {
565 1
                $chr = self::encode($encoding, $chr);
566
            }
567
568 12
            return $CHAR_CACHE[$cacheKey] = $chr;
569
        }
570
571
        //
572
        // fallback via "IntlChar"
573
        //
574
575 7
        if (self::$SUPPORT['intlChar'] === true) {
576
            /** @noinspection PhpComposerExtensionStubsInspection */
577 7
            $chr = \IntlChar::chr($code_point);
578
579 7
            if ($encoding !== 'UTF-8') {
580
                $chr = self::encode($encoding, $chr);
581
            }
582
583 7
            return $CHAR_CACHE[$cacheKey] = $chr;
584
        }
585
586
        //
587
        // fallback via vanilla php
588
        //
589
590
        if (self::$CHR === null) {
591
            self::$CHR = (array) self::getData('chr');
592
        }
593
594
        $code_point = (int) $code_point;
595
        if ($code_point <= 0x7F) {
596
            /**
597
             * @psalm-suppress PossiblyNullArrayAccess
598
             */
599
            $chr = self::$CHR[$code_point];
600
        } elseif ($code_point <= 0x7FF) {
601
            /**
602
             * @psalm-suppress PossiblyNullArrayAccess
603
             */
604
            $chr = self::$CHR[($code_point >> 6) + 0xC0] .
605
                   self::$CHR[($code_point & 0x3F) + 0x80];
606
        } elseif ($code_point <= 0xFFFF) {
607
            /**
608
             * @psalm-suppress PossiblyNullArrayAccess
609
             */
610
            $chr = self::$CHR[($code_point >> 12) + 0xE0] .
611
                   self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
612
                   self::$CHR[($code_point & 0x3F) + 0x80];
613
        } else {
614
            /**
615
             * @psalm-suppress PossiblyNullArrayAccess
616
             */
617
            $chr = self::$CHR[($code_point >> 18) + 0xF0] .
618
                   self::$CHR[(($code_point >> 12) & 0x3F) + 0x80] .
619
                   self::$CHR[(($code_point >> 6) & 0x3F) + 0x80] .
620
                   self::$CHR[($code_point & 0x3F) + 0x80];
621
        }
622
623
        if ($encoding !== 'UTF-8') {
624
            $chr = self::encode($encoding, $chr);
625
        }
626
627
        return $CHAR_CACHE[$cacheKey] = $chr;
628
    }
629
630
    /**
631
     * Applies callback to all characters of a string.
632
     *
633
     * @param array|string $callback <p>The callback function.</p>
634
     * @param string       $str      <p>UTF-8 string to run callback on.</p>
635
     *
636
     * @return string[] the outcome of callback
637
     */
638 2
    public static function chr_map($callback, string $str): array
639
    {
640 2
        return \array_map(
641 2
            $callback,
642 2
            self::str_split($str)
643
        );
644
    }
645
646
    /**
647
     * Generates an array of byte length of each character of a Unicode string.
648
     *
649
     * 1 byte => U+0000  - U+007F
650
     * 2 byte => U+0080  - U+07FF
651
     * 3 byte => U+0800  - U+FFFF
652
     * 4 byte => U+10000 - U+10FFFF
653
     *
654
     * @param string $str <p>The original unicode string.</p>
655
     *
656
     * @return int[] an array of byte lengths of each character
657
     */
658 4
    public static function chr_size_list(string $str): array
659
    {
660 4
        if ($str === '') {
661 4
            return [];
662
        }
663
664 4
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
665
            return \array_map(
666
                static function (string $data): int {
667
                    // "mb_" is available if overload is used, so use it ...
668
                    return \mb_strlen($data, 'CP850'); // 8-BIT
669
                },
670
                self::str_split($str)
671
            );
672
        }
673
674 4
        return \array_map('\strlen', self::str_split($str));
675
    }
676
677
    /**
678
     * Get a decimal code representation of a specific character.
679
     *
680
     * @param string $char <p>The input character.</p>
681
     *
682
     * @return int
683
     */
684 4
    public static function chr_to_decimal(string $char): int
685
    {
686 4
        $code = self::ord($char[0]);
687 4
        $bytes = 1;
688
689 4
        if (!($code & 0x80)) {
690
            // 0xxxxxxx
691 4
            return $code;
692
        }
693
694 4
        if (($code & 0xe0) === 0xc0) {
695
            // 110xxxxx
696 4
            $bytes = 2;
697 4
            $code &= ~0xc0;
698 4
        } elseif (($code & 0xf0) === 0xe0) {
699
            // 1110xxxx
700 4
            $bytes = 3;
701 4
            $code &= ~0xe0;
702 2
        } elseif (($code & 0xf8) === 0xf0) {
703
            // 11110xxx
704 2
            $bytes = 4;
705 2
            $code &= ~0xf0;
706
        }
707
708 4
        for ($i = 2; $i <= $bytes; ++$i) {
709
            // 10xxxxxx
710 4
            $code = ($code << 6) + (self::ord($char[$i - 1]) & ~0x80);
711
        }
712
713 4
        return $code;
714
    }
715
716
    /**
717
     * Get hexadecimal code point (U+xxxx) of a UTF-8 encoded character.
718
     *
719
     * @param int|string $char <p>The input character</p>
720
     * @param string     $pfix [optional]
721
     *
722
     * @return string The code point encoded as U+xxxx
723
     */
724 2
    public static function chr_to_hex($char, string $pfix = 'U+'): string
725
    {
726 2
        if ($char === '') {
727 2
            return '';
728
        }
729
730 2
        if ($char === '&#0;') {
731 2
            $char = '';
732
        }
733
734 2
        return self::int_to_hex(self::ord((string) $char), $pfix);
735
    }
736
737
    /**
738
     * alias for "UTF8::chr_to_decimal()"
739
     *
740
     * @param string $chr
741
     *
742
     * @return int
743
     *
744
     * @see UTF8::chr_to_decimal()
745
     */
746 2
    public static function chr_to_int(string $chr): int
747
    {
748 2
        return self::chr_to_decimal($chr);
749
    }
750
751
    /**
752
     * Splits a string into smaller chunks and multiple lines, using the specified line ending character.
753
     *
754
     * @param string $body     <p>The original string to be split.</p>
755
     * @param int    $chunklen [optional] <p>The maximum character length of a chunk.</p>
756
     * @param string $end      [optional] <p>The character(s) to be inserted at the end of each chunk.</p>
757
     *
758
     * @return string the chunked string
759
     */
760 4
    public static function chunk_split(string $body, int $chunklen = 76, string $end = "\r\n"): string
761
    {
762 4
        return \implode($end, self::str_split($body, $chunklen));
763
    }
764
765
    /**
766
     * Accepts a string and removes all non-UTF-8 characters from it + extras if needed.
767
     *
768
     * @param string $str                           <p>The string to be sanitized.</p>
769
     * @param bool   $remove_bom                    [optional] <p>Set to true, if you need to remove UTF-BOM.</p>
770
     * @param bool   $normalize_whitespace          [optional] <p>Set to true, if you need to normalize the
771
     *                                              whitespace.</p>
772
     * @param bool   $normalize_msword              [optional] <p>Set to true, if you need to normalize MS Word chars
773
     *                                              e.g.: "…"
774
     *                                              => "..."</p>
775
     * @param bool   $keep_non_breaking_space       [optional] <p>Set to true, to keep non-breaking-spaces, in
776
     *                                              combination with
777
     *                                              $normalize_whitespace</p>
778
     * @param bool   $replace_diamond_question_mark [optional] <p>Set to true, if you need to remove diamond question
779
     *                                              mark e.g.: "�"</p>
780
     * @param bool   $remove_invisible_characters   [optional] <p>Set to false, if you not want to remove invisible
781
     *                                              characters e.g.: "\0"</p>
782
     *
783
     * @return string clean UTF-8 encoded string
784
     */
785 114
    public static function clean(
786
        string $str,
787
        bool $remove_bom = false,
788
        bool $normalize_whitespace = false,
789
        bool $normalize_msword = false,
790
        bool $keep_non_breaking_space = false,
791
        bool $replace_diamond_question_mark = false,
792
        bool $remove_invisible_characters = true
793
    ): string {
794
        // http://stackoverflow.com/questions/1401317/remove-non-utf8-characters-from-string
795
        // caused connection reset problem on larger strings
796
797 114
        $regx = '/
798
          (
799
            (?: [\x00-\x7F]               # single-byte sequences   0xxxxxxx
800
            |   [\xC0-\xDF][\x80-\xBF]    # double-byte sequences   110xxxxx 10xxxxxx
801
            |   [\xE0-\xEF][\x80-\xBF]{2} # triple-byte sequences   1110xxxx 10xxxxxx * 2
802
            |   [\xF0-\xF7][\x80-\xBF]{3} # quadruple-byte sequence 11110xxx 10xxxxxx * 3
803
            ){1,100}                      # ...one or more times
804
          )
805
        | ( [\x80-\xBF] )                 # invalid byte in range 10000000 - 10111111
806
        | ( [\xC0-\xFF] )                 # invalid byte in range 11000000 - 11111111
807
        /x';
808 114
        $str = (string) \preg_replace($regx, '$1', $str);
809
810 114
        if ($replace_diamond_question_mark === true) {
811 60
            $str = self::replace_diamond_question_mark($str, '');
812
        }
813
814 114
        if ($remove_invisible_characters === true) {
815 114
            $str = self::remove_invisible_characters($str);
816
        }
817
818 114
        if ($normalize_whitespace === true) {
819 64
            $str = self::normalize_whitespace($str, $keep_non_breaking_space);
820
        }
821
822 114
        if ($normalize_msword === true) {
823 32
            $str = self::normalize_msword($str);
824
        }
825
826 114
        if ($remove_bom === true) {
827 64
            $str = self::remove_bom($str);
828
        }
829
830 114
        return $str;
831
    }
832
833
    /**
834
     * Clean-up a and show only printable UTF-8 chars at the end  + fix UTF-8 encoding.
835
     *
836
     * @param string $str <p>The input string.</p>
837
     *
838
     * @return string
839
     */
840 33
    public static function cleanup($str): string
841
    {
842
        // init
843 33
        $str = (string) $str;
844
845 33
        if ($str === '') {
846 5
            return '';
847
        }
848
849
        // fixed ISO <-> UTF-8 Errors
850 33
        $str = self::fix_simple_utf8($str);
851
852
        // remove all none UTF-8 symbols
853
        // && remove diamond question mark (�)
854
        // && remove remove invisible characters (e.g. "\0")
855
        // && remove BOM
856
        // && normalize whitespace chars (but keep non-breaking-spaces)
857 33
        return self::clean(
858 33
            $str,
859 33
            true,
860 33
            true,
861 33
            false,
862 33
            true,
863 33
            true,
864 33
            true
865
        );
866
    }
867
868
    /**
869
     * Accepts a string or a array of strings and returns an array of Unicode code points.
870
     *
871
     * INFO: opposite to UTF8::string()
872
     *
873
     * @param string|string[] $arg     <p>A UTF-8 encoded string or an array of such strings.</p>
874
     * @param bool            $u_style <p>If True, will return code points in U+xxxx format,
875
     *                                 default, code points will be returned as integers.</p>
876
     *
877
     * @return array<int|string>
878
     *                           The array of code points:<br>
879
     *                           array<int> for $u_style === false<br>
880
     *                           array<string> for $u_style === true<br>
881
     */
882 12
    public static function codepoints($arg, bool $u_style = false): array
883
    {
884 12
        if (\is_string($arg) === true) {
885 12
            $arg = self::str_split($arg);
886
        }
887
888 12
        $arg = \array_map(
889
            [
890 12
                self::class,
891
                'ord',
892
            ],
893 12
            $arg
894
        );
895
896 12
        if (\count($arg) === 0) {
897 7
            return [];
898
        }
899
900 11
        if ($u_style === true) {
901 2
            $arg = \array_map(
902
                [
903 2
                    self::class,
904
                    'int_to_hex',
905
                ],
906 2
                $arg
907
            );
908
        }
909
910 11
        return $arg;
911
    }
912
913
    /**
914
     * Trims the string and replaces consecutive whitespace characters with a
915
     * single space. This includes tabs and newline characters, as well as
916
     * multibyte whitespace such as the thin space and ideographic space.
917
     *
918
     * @param string $str <p>The input string.</p>
919
     *
920
     * @return string string with a trimmed $str and condensed whitespace
921
     */
922 13
    public static function collapse_whitespace(string $str): string
923
    {
924 13
        if (self::$SUPPORT['mbstring'] === true) {
925
            /** @noinspection PhpComposerExtensionStubsInspection */
926 13
            return \trim((string) \mb_ereg_replace('[[:space:]]+', ' ', $str));
927
        }
928
929
        return \trim(self::regex_replace($str, '[[:space:]]+', ' '));
930
    }
931
932
    /**
933
     * Returns count of characters used in a string.
934
     *
935
     * @param string $str                <p>The input string.</p>
936
     * @param bool   $cleanUtf8          [optional] <p>Remove non UTF-8 chars from the string.</p>
937
     * @param bool   $tryToUseMbFunction [optional] <p>Set to false, if you don't want to use
938
     *
939
     * @return int[] an associative array of Character as keys and
940
     *               their count as values
941
     */
942 19
    public static function count_chars(
943
        string $str,
944
        bool $cleanUtf8 = false,
945
        bool $tryToUseMbFunction = true
946
    ): array {
947 19
        return \array_count_values(
948 19
            self::str_split(
949 19
                $str,
950 19
                1,
951 19
                $cleanUtf8,
952 19
                $tryToUseMbFunction
953
            )
954
        );
955
    }
956
957
    /**
958
     * Remove css media-queries.
959
     *
960
     * @param string $str
961
     *
962
     * @return string
963
     */
964 1
    public static function css_stripe_media_queries(string $str): string
965
    {
966 1
        return (string) \preg_replace(
967 1
            '#@media\\s+(?:only\\s)?(?:[\\s{\\(]|screen|all)\\s?[^{]+{.*}\\s*}\\s*#isumU',
968 1
            '',
969 1
            $str
970
        );
971
    }
972
973
    /**
974
     * Checks whether ctype is available on the server.
975
     *
976
     * @return bool
977
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
978
     */
979
    public static function ctype_loaded(): bool
980
    {
981
        return \extension_loaded('ctype');
982
    }
983
984
    /**
985
     * Converts a int-value into an UTF-8 character.
986
     *
987
     * @param mixed $int
988
     *
989
     * @return string
990
     */
991 19
    public static function decimal_to_chr($int): string
992
    {
993 19
        return self::html_entity_decode('&#' . $int . ';', \ENT_QUOTES | \ENT_HTML5);
994
    }
995
996
    /**
997
     * Decodes a MIME header field
998
     *
999
     * @param string $str
1000
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
1001
     *
1002
     * @return false|string
1003
     *                      A decoded MIME field on success,
1004
     *                      or false if an error occurs during the decoding
1005
     */
1006
    public static function decode_mimeheader($str, string $encoding = 'UTF-8')
1007
    {
1008
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
1009
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
1010
        }
1011
1012
        if (self::$SUPPORT['iconv'] === true) {
1013
            return \iconv_mime_decode($str, \ICONV_MIME_DECODE_CONTINUE_ON_ERROR, $encoding);
1014
        }
1015
1016
        if ($encoding !== 'UTF-8') {
1017
            $str = self::encode($encoding, $str);
1018
        }
1019
1020
        return \mb_decode_mimeheader($str);
1021
    }
1022
1023
    /**
1024
     * Decodes a string which was encoded by "UTF8::emoji_encode()".
1025
     *
1026
     * @param string $str                        <p>The input string.</p>
1027
     * @param bool   $useReversibleStringMapping [optional] <p>
1028
     *                                           When <b>TRUE</b>, we se a reversible string mapping
1029
     *                                           between "emoji_encode" and "emoji_decode".</p>
1030
     *
1031
     * @return string
1032
     */
1033 9
    public static function emoji_decode(string $str, bool $useReversibleStringMapping = false): string
1034
    {
1035 9
        self::initEmojiData();
1036
1037 9
        if ($useReversibleStringMapping === true) {
1038 9
            return (string) \str_replace(
1039 9
                (array) self::$EMOJI_KEYS_REVERSIBLE_CACHE,
1040 9
                (array) self::$EMOJI_VALUES_CACHE,
1041 9
                $str
1042
            );
1043
        }
1044
1045 1
        return (string) \str_replace(
1046 1
            (array) self::$EMOJI_KEYS_CACHE,
1047 1
            (array) self::$EMOJI_VALUES_CACHE,
1048 1
            $str
1049
        );
1050
    }
1051
1052
    /**
1053
     * Encode a string with emoji chars into a non-emoji string.
1054
     *
1055
     * @param string $str                        <p>The input string</p>
1056
     * @param bool   $useReversibleStringMapping [optional] <p>
1057
     *                                           when <b>TRUE</b>, we se a reversible string mapping
1058
     *                                           between "emoji_encode" and "emoji_decode"</p>
1059
     *
1060
     * @return string
1061
     */
1062 9
    public static function emoji_encode(string $str, bool $useReversibleStringMapping = false): string
1063
    {
1064 9
        self::initEmojiData();
1065
1066 9
        if ($useReversibleStringMapping === true) {
1067 9
            return (string) \str_replace(
1068 9
                (array) self::$EMOJI_VALUES_CACHE,
1069 9
                (array) self::$EMOJI_KEYS_REVERSIBLE_CACHE,
1070 9
                $str
1071
            );
1072
        }
1073
1074 1
        return (string) \str_replace(
1075 1
            (array) self::$EMOJI_VALUES_CACHE,
1076 1
            (array) self::$EMOJI_KEYS_CACHE,
1077 1
            $str
1078
        );
1079
    }
1080
1081
    /**
1082
     * Encode a string with a new charset-encoding.
1083
     *
1084
     * INFO:  The different to "UTF8::utf8_encode()" is that this function, try to fix also broken / double encoding,
1085
     *        so you can call this function also on a UTF-8 String and you don't mess the string.
1086
     *
1087
     * @param string $toEncoding             <p>e.g. 'UTF-16', 'UTF-8', 'ISO-8859-1', etc.</p>
1088
     * @param string $str                    <p>The input string</p>
1089
     * @param bool   $autodetectFromEncoding [optional] <p>Force the new encoding (we try to fix broken / double
1090
     *                                       encoding for UTF-8)<br> otherwise we auto-detect the current
1091
     *                                       string-encoding</p>
1092
     * @param string $fromEncoding           [optional] <p>e.g. 'UTF-16', 'UTF-8', 'ISO-8859-1', etc.<br>
1093
     *                                       A empty string will trigger the autodetect anyway.</p>
1094
     *
1095
     * @return string
1096
     *
1097
     * @psalm-suppress InvalidReturnStatement
1098
     */
1099 28
    public static function encode(
1100
        string $toEncoding,
1101
        string $str,
1102
        bool $autodetectFromEncoding = true,
1103
        string $fromEncoding = ''
1104
    ): string {
1105 28
        if ($str === '' || $toEncoding === '') {
1106 13
            return $str;
1107
        }
1108
1109 28
        if ($toEncoding !== 'UTF-8' && $toEncoding !== 'CP850') {
1110 7
            $toEncoding = self::normalize_encoding($toEncoding, 'UTF-8');
1111
        }
1112
1113 28
        if ($fromEncoding && $fromEncoding !== 'UTF-8' && $fromEncoding !== 'CP850') {
1114 2
            $fromEncoding = self::normalize_encoding($fromEncoding, null);
1115
        }
1116
1117
        if (
1118 28
            $toEncoding
1119
            &&
1120 28
            $fromEncoding
1121
            &&
1122 28
            $fromEncoding === $toEncoding
1123
        ) {
1124
            return $str;
1125
        }
1126
1127 28
        if ($toEncoding === 'JSON') {
1128 1
            $return = self::json_encode($str);
1129 1
            if ($return === false) {
1130
                throw new \InvalidArgumentException('The input string [' . $str . '] can not be used for json_encode().');
1131
            }
1132
1133 1
            return $return;
1134
        }
1135 28
        if ($fromEncoding === 'JSON') {
1136 1
            $str = self::json_decode($str);
1137 1
            $fromEncoding = '';
1138
        }
1139
1140 28
        if ($toEncoding === 'BASE64') {
1141 2
            return \base64_encode($str);
1142
        }
1143 28
        if ($fromEncoding === 'BASE64') {
1144 2
            $str = \base64_decode($str, true);
1145 2
            $fromEncoding = '';
1146
        }
1147
1148 28
        if ($toEncoding === 'HTML-ENTITIES') {
1149 2
            return self::html_encode($str, true, 'UTF-8');
1150
        }
1151 28
        if ($fromEncoding === 'HTML-ENTITIES') {
1152 2
            $str = self::html_decode($str, \ENT_COMPAT, 'UTF-8');
1153 2
            $fromEncoding = '';
1154
        }
1155
1156 28
        $fromEncodingDetected = false;
1157
        if (
1158 28
            $autodetectFromEncoding === true
1159
            ||
1160 28
            !$fromEncoding
1161
        ) {
1162 28
            $fromEncodingDetected = self::str_detect_encoding($str);
1163
        }
1164
1165
        // DEBUG
1166
        //var_dump($toEncoding, $fromEncoding, $fromEncodingDetected, $str, "\n\n");
1167
1168 28
        if ($fromEncodingDetected !== false) {
1169 24
            $fromEncoding = $fromEncodingDetected;
1170 7
        } elseif ($autodetectFromEncoding === true) {
1171
            // fallback for the "autodetect"-mode
1172 7
            return self::to_utf8($str);
1173
        }
1174
1175
        if (
1176 24
            !$fromEncoding
1177
            ||
1178 24
            $fromEncoding === $toEncoding
1179
        ) {
1180 15
            return $str;
1181
        }
1182
1183
        if (
1184 19
            $toEncoding === 'UTF-8'
1185
            &&
1186
            (
1187 17
                $fromEncoding === 'WINDOWS-1252'
1188
                ||
1189 19
                $fromEncoding === 'ISO-8859-1'
1190
            )
1191
        ) {
1192 13
            return self::to_utf8($str);
1193
        }
1194
1195
        if (
1196 12
            $toEncoding === 'ISO-8859-1'
1197
            &&
1198
            (
1199 6
                $fromEncoding === 'WINDOWS-1252'
1200
                ||
1201 12
                $fromEncoding === 'UTF-8'
1202
            )
1203
        ) {
1204 6
            return self::to_iso8859($str);
1205
        }
1206
1207
        if (
1208 10
            $toEncoding !== 'UTF-8'
1209
            &&
1210 10
            $toEncoding !== 'ISO-8859-1'
1211
            &&
1212 10
            $toEncoding !== 'WINDOWS-1252'
1213
            &&
1214 10
            self::$SUPPORT['mbstring'] === false
1215
        ) {
1216
            \trigger_error('UTF8::encode() without mbstring cannot handle "' . $toEncoding . '" encoding', \E_USER_WARNING);
1217
        }
1218
1219 10
        if (self::$SUPPORT['mbstring'] === true) {
1220
            // warning: do not use the symfony polyfill here
1221 10
            $strEncoded = \mb_convert_encoding(
1222 10
                $str,
1223 10
                $toEncoding,
1224 10
                $fromEncoding
1225
            );
1226
1227 10
            if ($strEncoded) {
1228 10
                return $strEncoded;
1229
            }
1230
        }
1231
1232
        $return = \iconv($fromEncoding, $toEncoding, $str);
1233
        if ($return !== false) {
1234
            return $return;
1235
        }
1236
1237
        return $str;
1238
    }
1239
1240
    /**
1241
     * @param string $str
1242
     * @param string $fromCharset      [optional] <p>Set the input charset.</p>
1243
     * @param string $toCharset        [optional] <p>Set the output charset.</p>
1244
     * @param string $transferEncoding [optional] <p>Set the transfer encoding.</p>
1245
     * @param string $linefeed         [optional] <p>Set the used linefeed.</p>
1246
     * @param int    $indent           [optional] <p>Set the max length indent.</p>
1247
     *
1248
     * @return false|string
1249
     *                      An encoded MIME field on success,
1250
     *                      or false if an error occurs during the encoding
1251
     */
1252
    public static function encode_mimeheader(
1253
        $str,
1254
        $fromCharset = 'UTF-8',
1255
        $toCharset = 'UTF-8',
1256
        $transferEncoding = 'Q',
1257
        $linefeed = "\r\n",
1258
        $indent = 76
1259
    ) {
1260
        if ($fromCharset !== 'UTF-8' && $fromCharset !== 'CP850') {
1261
            $fromCharset = self::normalize_encoding($fromCharset, 'UTF-8');
1262
        }
1263
1264
        if ($toCharset !== 'UTF-8' && $toCharset !== 'CP850') {
1265
            $toCharset = self::normalize_encoding($toCharset, 'UTF-8');
1266
        }
1267
1268
        return \iconv_mime_encode(
1269
            '',
1270
            $str,
1271
            [
1272
                'scheme'           => $transferEncoding,
1273
                'line-length'      => $indent,
1274
                'input-charset'    => $fromCharset,
1275
                'output-charset'   => $toCharset,
1276
                'line-break-chars' => $linefeed,
1277
            ]
1278
        );
1279
    }
1280
1281
    /**
1282
     * Create an extract from a sentence, so if the search-string was found, it try to centered in the output.
1283
     *
1284
     * @param string   $str                    <p>The input string.</p>
1285
     * @param string   $search                 <p>The searched string.</p>
1286
     * @param int|null $length                 [optional] <p>Default: null === text->length / 2</p>
1287
     * @param string   $replacerForSkippedText [optional] <p>Default: …</p>
1288
     * @param string   $encoding               [optional] <p>Set the charset for e.g. "mb_" function</p>
1289
     *
1290
     * @return string
1291
     */
1292 1
    public static function extract_text(
1293
        string $str,
1294
        string $search = '',
1295
        int $length = null,
1296
        string $replacerForSkippedText = '…',
1297
        string $encoding = 'UTF-8'
1298
    ): string {
1299 1
        if ($str === '') {
1300 1
            return '';
1301
        }
1302
1303 1
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
1304
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
1305
        }
1306
1307 1
        $trimChars = "\t\r\n -_()!~?=+/*\\,.:;\"'[]{}`&";
1308
1309 1
        if ($length === null) {
1310 1
            $length = (int) \round((int) self::strlen($str, $encoding) / 2, 0);
1311
        }
1312
1313 1
        if ($search === '') {
1314 1
            if ($encoding === 'UTF-8') {
1315 1
                if ($length > 0) {
1316 1
                    $stringLength = (int) \mb_strlen($str);
1317 1
                    $end = ($length - 1) > $stringLength ? $stringLength : ($length - 1);
1318
                } else {
1319 1
                    $end = 0;
1320
                }
1321
1322 1
                $pos = (int) \min(
1323 1
                    \mb_strpos($str, ' ', $end),
1324 1
                    \mb_strpos($str, '.', $end)
1325
                );
1326
            } else {
1327
                if ($length > 0) {
1328
                    $stringLength = (int) self::strlen($str, $encoding);
1329
                    $end = ($length - 1) > $stringLength ? $stringLength : ($length - 1);
1330
                } else {
1331
                    $end = 0;
1332
                }
1333
1334
                $pos = (int) \min(
1335
                    self::strpos($str, ' ', $end, $encoding),
1336
                    self::strpos($str, '.', $end, $encoding)
1337
                );
1338
            }
1339
1340 1
            if ($pos) {
1341 1
                if ($encoding === 'UTF-8') {
1342 1
                    $strSub = \mb_substr($str, 0, $pos);
1343
                } else {
1344
                    $strSub = self::substr($str, 0, $pos, $encoding);
1345
                }
1346
1347 1
                if ($strSub === false) {
1348
                    return '';
1349
                }
1350
1351 1
                return \rtrim($strSub, $trimChars) . $replacerForSkippedText;
1352
            }
1353
1354
            return $str;
1355
        }
1356
1357 1
        if ($encoding === 'UTF-8') {
1358 1
            $wordPos = (int) \mb_stripos($str, $search);
1359 1
            $halfSide = (int) ($wordPos - $length / 2 + (int) \mb_strlen($search) / 2);
1360
        } else {
1361
            $wordPos = (int) self::stripos($str, $search, 0, $encoding);
1362
            $halfSide = (int) ($wordPos - $length / 2 + (int) self::strlen($search, $encoding) / 2);
1363
        }
1364
1365 1
        $pos_start = 0;
1366 1
        if ($halfSide > 0) {
1367 1
            if ($encoding === 'UTF-8') {
1368 1
                $halfText = \mb_substr($str, 0, $halfSide);
1369
            } else {
1370
                $halfText = self::substr($str, 0, $halfSide, $encoding);
1371
            }
1372 1
            if ($halfText !== false) {
1373 1
                if ($encoding === 'UTF-8') {
1374 1
                    $pos_start = (int) \max(
1375 1
                        \mb_strrpos($halfText, ' '),
1376 1
                        \mb_strrpos($halfText, '.')
1377
                    );
1378
                } else {
1379
                    $pos_start = (int) \max(
1380
                        self::strrpos($halfText, ' ', 0, $encoding),
1381
                        self::strrpos($halfText, '.', 0, $encoding)
1382
                    );
1383
                }
1384
            }
1385
        }
1386
1387 1
        if ($wordPos && $halfSide > 0) {
1388 1
            $offset = $pos_start + $length - 1;
1389 1
            $realLength = (int) self::strlen($str, $encoding);
1390
1391 1
            if ($offset > $realLength) {
1392
                $offset = $realLength;
1393
            }
1394
1395 1
            if ($encoding === 'UTF-8') {
1396 1
                $pos_end = (int) \min(
1397 1
                    \mb_strpos($str, ' ', $offset),
1398 1
                    \mb_strpos($str, '.', $offset)
1399 1
                    ) - $pos_start;
1400
            } else {
1401
                $pos_end = (int) \min(
1402
                    self::strpos($str, ' ', $offset, $encoding),
1403
                    self::strpos($str, '.', $offset, $encoding)
1404
                    ) - $pos_start;
1405
            }
1406
1407 1
            if (!$pos_end || $pos_end <= 0) {
1408 1
                if ($encoding === 'UTF-8') {
1409 1
                    $strSub = \mb_substr($str, $pos_start, (int) \mb_strlen($str));
1410
                } else {
1411
                    $strSub = self::substr($str, $pos_start, (int) self::strlen($str, $encoding), $encoding);
1412
                }
1413 1
                if ($strSub !== false) {
1414 1
                    $extract = $replacerForSkippedText . \ltrim($strSub, $trimChars);
1415
                } else {
1416 1
                    $extract = '';
1417
                }
1418
            } else {
1419 1
                if ($encoding === 'UTF-8') {
1420 1
                    $strSub = \mb_substr($str, $pos_start, $pos_end);
1421
                } else {
1422
                    $strSub = self::substr($str, $pos_start, $pos_end, $encoding);
1423
                }
1424 1
                if ($strSub !== false) {
1425 1
                    $extract = $replacerForSkippedText . \trim($strSub, $trimChars) . $replacerForSkippedText;
1426
                } else {
1427 1
                    $extract = '';
1428
                }
1429
            }
1430
        } else {
1431 1
            $offset = $length - 1;
1432 1
            $trueLength = (int) self::strlen($str, $encoding);
1433
1434 1
            if ($offset > $trueLength) {
1435
                $offset = $trueLength;
1436
            }
1437
1438 1
            if ($encoding === 'UTF-8') {
1439 1
                $pos_end = (int) \min(
1440 1
                    \mb_strpos($str, ' ', $offset),
1441 1
                    \mb_strpos($str, '.', $offset)
1442
                );
1443
            } else {
1444
                $pos_end = (int) \min(
1445
                    self::strpos($str, ' ', $offset, $encoding),
1446
                    self::strpos($str, '.', $offset, $encoding)
1447
                );
1448
            }
1449
1450 1
            if ($pos_end) {
1451 1
                if ($encoding === 'UTF-8') {
1452 1
                    $strSub = \mb_substr($str, 0, $pos_end);
1453
                } else {
1454
                    $strSub = self::substr($str, 0, $pos_end, $encoding);
1455
                }
1456 1
                if ($strSub !== false) {
1457 1
                    $extract = \rtrim($strSub, $trimChars) . $replacerForSkippedText;
1458
                } else {
1459 1
                    $extract = '';
1460
                }
1461
            } else {
1462 1
                $extract = $str;
1463
            }
1464
        }
1465
1466 1
        return $extract;
1467
    }
1468
1469
    /**
1470
     * Reads entire file into a string.
1471
     *
1472
     * WARNING: do not use UTF-8 Option ($convertToUtf8) for binary-files (e.g.: images) !!!
1473
     *
1474
     * @see http://php.net/manual/en/function.file-get-contents.php
1475
     *
1476
     * @param string        $filename         <p>
1477
     *                                        Name of the file to read.
1478
     *                                        </p>
1479
     * @param bool          $use_include_path [optional] <p>
1480
     *                                        Prior to PHP 5, this parameter is called
1481
     *                                        use_include_path and is a bool.
1482
     *                                        As of PHP 5 the FILE_USE_INCLUDE_PATH can be used
1483
     *                                        to trigger include path
1484
     *                                        search.
1485
     *                                        </p>
1486
     * @param resource|null $context          [optional] <p>
1487
     *                                        A valid context resource created with
1488
     *                                        stream_context_create. If you don't need to use a
1489
     *                                        custom context, you can skip this parameter by &null;.
1490
     *                                        </p>
1491
     * @param int|null      $offset           [optional] <p>
1492
     *                                        The offset where the reading starts.
1493
     *                                        </p>
1494
     * @param int|null      $maxLength        [optional] <p>
1495
     *                                        Maximum length of data read. The default is to read until end
1496
     *                                        of file is reached.
1497
     *                                        </p>
1498
     * @param int           $timeout          <p>The time in seconds for the timeout.</p>
1499
     * @param bool          $convertToUtf8    <strong>WARNING!!!</strong> <p>Maybe you can't use this option for
1500
     *                                        some files, because they used non default utf-8 chars. Binary files
1501
     *                                        like images or pdf will not be converted.</p>
1502
     * @param string        $fromEncoding     [optional] <p>e.g. 'UTF-16', 'UTF-8', 'ISO-8859-1', etc.<br>
1503
     *                                        A empty string will trigger the autodetect anyway.</p>
1504
     *
1505
     * @return false|string the function returns the read data as string or <b>false</b> on failure
1506
     */
1507 12
    public static function file_get_contents(
1508
        string $filename,
1509
        bool $use_include_path = false,
1510
        $context = null,
1511
        int $offset = null,
1512
        int $maxLength = null,
1513
        int $timeout = 10,
1514
        bool $convertToUtf8 = true,
1515
        string $fromEncoding = ''
1516
    ) {
1517
        // init
1518 12
        $filename = \filter_var($filename, \FILTER_SANITIZE_STRING);
1519
1520 12
        if ($filename === false) {
1521
            return false;
1522
        }
1523
1524 12
        if ($timeout && $context === null) {
1525 9
            $context = \stream_context_create(
1526
                [
1527
                    'http' => [
1528 9
                        'timeout' => $timeout,
1529
                    ],
1530
                ]
1531
            );
1532
        }
1533
1534 12
        if ($offset === null) {
1535 12
            $offset = 0;
1536
        }
1537
1538 12
        if (\is_int($maxLength) === true) {
1539 2
            $data = \file_get_contents($filename, $use_include_path, $context, $offset, $maxLength);
1540
        } else {
1541 12
            $data = \file_get_contents($filename, $use_include_path, $context, $offset);
1542
        }
1543
1544
        // return false on error
1545 12
        if ($data === false) {
1546
            return false;
1547
        }
1548
1549 12
        if ($convertToUtf8 === true) {
1550
            if (
1551 12
                self::is_binary($data, true) === true
1552
                &&
1553 12
                self::is_utf16($data, false) === false
1554
                &&
1555 12
                self::is_utf32($data, false) === false
1556 7
            ) {
1557
                // do nothing, it's binary and not UTF16 or UTF32
1558
            } else {
1559 9
                $data = self::encode('UTF-8', $data, false, $fromEncoding);
1560 9
                $data = self::cleanup($data);
1561
            }
1562
        }
1563
1564 12
        return $data;
1565
    }
1566
1567
    /**
1568
     * Checks if a file starts with BOM (Byte Order Mark) character.
1569
     *
1570
     * @param string $file_path <p>Path to a valid file.</p>
1571
     *
1572
     * @throws \RuntimeException if file_get_contents() returned false
1573
     *
1574
     * @return bool
1575
     *              <strong>true</strong> if the file has BOM at the start, <strong>false</strong> otherwise
1576
     */
1577 2
    public static function file_has_bom(string $file_path): bool
1578
    {
1579 2
        $file_content = \file_get_contents($file_path);
1580 2
        if ($file_content === false) {
1581
            throw new \RuntimeException('file_get_contents() returned false for:' . $file_path);
1582
        }
1583
1584 2
        return self::string_has_bom($file_content);
1585
    }
1586
1587
    /**
1588
     * Normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed.
1589
     *
1590
     * @param mixed  $var
1591
     * @param int    $normalization_form
1592
     * @param string $leading_combining
1593
     *
1594
     * @return mixed
1595
     */
1596 62
    public static function filter($var, int $normalization_form = \Normalizer::NFC, string $leading_combining = '◌')
1597
    {
1598 62
        switch (\gettype($var)) {
1599 62
            case 'array':
1600 6
                foreach ($var as $k => &$v) {
1601 6
                    $v = self::filter($v, $normalization_form, $leading_combining);
1602
                }
1603 6
                unset($v);
1604
1605 6
                break;
1606 62
            case 'object':
1607 4
                foreach ($var as $k => &$v) {
1608 4
                    $v = self::filter($v, $normalization_form, $leading_combining);
1609
                }
1610 4
                unset($v);
1611
1612 4
                break;
1613 62
            case 'string':
1614
1615 62
                if (\strpos($var, "\r") !== false) {
1616
                    // Workaround https://bugs.php.net/65732
1617 3
                    $var = self::normalize_line_ending($var);
1618
                }
1619
1620 62
                if (self::is_ascii($var) === false) {
1621 32
                    if (\Normalizer::isNormalized($var, $normalization_form)) {
1622 27
                        $n = '-';
1623
                    } else {
1624 12
                        $n = \Normalizer::normalize($var, $normalization_form);
1625
1626 12
                        if (isset($n[0])) {
1627 7
                            $var = $n;
1628
                        } else {
1629 8
                            $var = self::encode('UTF-8', $var, true);
1630
                        }
1631
                    }
1632
1633
                    if (
1634 32
                        $var[0] >= "\x80"
1635
                        &&
1636 32
                        isset($n[0], $leading_combining[0])
1637
                        &&
1638 32
                        \preg_match('/^\p{Mn}/u', $var)
1639
                    ) {
1640
                        // Prevent leading combining chars
1641
                        // for NFC-safe concatenations.
1642 3
                        $var = $leading_combining . $var;
1643
                    }
1644
                }
1645
1646 62
                break;
1647
        }
1648
1649 62
        return $var;
1650
    }
1651
1652
    /**
1653
     * "filter_input()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed.
1654
     *
1655
     * Gets a specific external variable by name and optionally filters it
1656
     *
1657
     * @see http://php.net/manual/en/function.filter-input.php
1658
     *
1659
     * @param int    $type          <p>
1660
     *                              One of <b>INPUT_GET</b>, <b>INPUT_POST</b>,
1661
     *                              <b>INPUT_COOKIE</b>, <b>INPUT_SERVER</b>, or
1662
     *                              <b>INPUT_ENV</b>.
1663
     *                              </p>
1664
     * @param string $variable_name <p>
1665
     *                              Name of a variable to get.
1666
     *                              </p>
1667
     * @param int    $filter        [optional] <p>
1668
     *                              The ID of the filter to apply. The
1669
     *                              manual page lists the available filters.
1670
     *                              </p>
1671
     * @param mixed  $options       [optional] <p>
1672
     *                              Associative array of options or bitwise disjunction of flags. If filter
1673
     *                              accepts options, flags can be provided in "flags" field of array.
1674
     *                              </p>
1675
     *
1676
     * @return mixed Value of the requested variable on success, <b>FALSE</b> if the filter fails, or <b>NULL</b> if the
1677
     *               <i>variable_name</i> variable is not set. If the flag <b>FILTER_NULL_ON_FAILURE</b> is used, it
1678
     *               returns <b>FALSE</b> if the variable is not set and <b>NULL</b> if the filter fails.
1679
     */
1680
    public static function filter_input(
1681
        int $type,
1682
        string $variable_name,
1683
        int $filter = \FILTER_DEFAULT,
1684
        $options = null
1685
    ) {
1686
        if (\func_num_args() < 4) {
1687
            $var = \filter_input($type, $variable_name, $filter);
1688
        } else {
1689
            $var = \filter_input($type, $variable_name, $filter, $options);
1690
        }
1691
1692
        return self::filter($var);
1693
    }
1694
1695
    /**
1696
     * "filter_input_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed.
1697
     *
1698
     * Gets external variables and optionally filters them
1699
     *
1700
     * @see http://php.net/manual/en/function.filter-input-array.php
1701
     *
1702
     * @param int   $type       <p>
1703
     *                          One of <b>INPUT_GET</b>, <b>INPUT_POST</b>,
1704
     *                          <b>INPUT_COOKIE</b>, <b>INPUT_SERVER</b>, or
1705
     *                          <b>INPUT_ENV</b>.
1706
     *                          </p>
1707
     * @param mixed $definition [optional] <p>
1708
     *                          An array defining the arguments. A valid key is a string
1709
     *                          containing a variable name and a valid value is either a filter type, or an array
1710
     *                          optionally specifying the filter, flags and options. If the value is an
1711
     *                          array, valid keys are filter which specifies the
1712
     *                          filter type,
1713
     *                          flags which specifies any flags that apply to the
1714
     *                          filter, and options which specifies any options that
1715
     *                          apply to the filter. See the example below for a better understanding.
1716
     *                          </p>
1717
     *                          <p>
1718
     *                          This parameter can be also an integer holding a filter constant. Then all values in the
1719
     *                          input array are filtered by this filter.
1720
     *                          </p>
1721
     * @param bool  $add_empty  [optional] <p>
1722
     *                          Add missing keys as <b>NULL</b> to the return value.
1723
     *                          </p>
1724
     *
1725
     * @return mixed An array containing the values of the requested variables on success, or <b>FALSE</b> on failure.
1726
     *               An array value will be <b>FALSE</b> if the filter fails, or <b>NULL</b> if the variable is not
1727
     *               set. Or if the flag <b>FILTER_NULL_ON_FAILURE</b> is used, it returns <b>FALSE</b> if the variable
1728
     *               is not set and <b>NULL</b> if the filter fails.
1729
     */
1730
    public static function filter_input_array(int $type, $definition = null, bool $add_empty = true)
1731
    {
1732
        if (\func_num_args() < 2) {
1733
            $a = \filter_input_array($type);
1734
        } else {
1735
            $a = \filter_input_array($type, $definition, $add_empty);
1736
        }
1737
1738
        return self::filter($a);
1739
    }
1740
1741
    /**
1742
     * "filter_var()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed.
1743
     *
1744
     * Filters a variable with a specified filter
1745
     *
1746
     * @see http://php.net/manual/en/function.filter-var.php
1747
     *
1748
     * @param mixed $variable <p>
1749
     *                        Value to filter.
1750
     *                        </p>
1751
     * @param int   $filter   [optional] <p>
1752
     *                        The ID of the filter to apply. The
1753
     *                        manual page lists the available filters.
1754
     *                        </p>
1755
     * @param mixed $options  [optional] <p>
1756
     *                        Associative array of options or bitwise disjunction of flags. If filter
1757
     *                        accepts options, flags can be provided in "flags" field of array. For
1758
     *                        the "callback" filter, callable type should be passed. The
1759
     *                        callback must accept one argument, the value to be filtered, and return
1760
     *                        the value after filtering/sanitizing it.
1761
     *                        </p>
1762
     *                        <p>
1763
     *                        <code>
1764
     *                        // for filters that accept options, use this format
1765
     *                        $options = array(
1766
     *                        'options' => array(
1767
     *                        'default' => 3, // value to return if the filter fails
1768
     *                        // other options here
1769
     *                        'min_range' => 0
1770
     *                        ),
1771
     *                        'flags' => FILTER_FLAG_ALLOW_OCTAL,
1772
     *                        );
1773
     *                        $var = filter_var('0755', FILTER_VALIDATE_INT, $options);
1774
     *                        // for filter that only accept flags, you can pass them directly
1775
     *                        $var = filter_var('oops', FILTER_VALIDATE_BOOLEAN, FILTER_NULL_ON_FAILURE);
1776
     *                        // for filter that only accept flags, you can also pass as an array
1777
     *                        $var = filter_var('oops', FILTER_VALIDATE_BOOLEAN,
1778
     *                        array('flags' => FILTER_NULL_ON_FAILURE));
1779
     *                        // callback validate filter
1780
     *                        function foo($value)
1781
     *                        {
1782
     *                        // Expected format: Surname, GivenNames
1783
     *                        if (strpos($value, ", ") === false) return false;
1784
     *                        list($surname, $givennames) = explode(", ", $value, 2);
1785
     *                        $empty = (empty($surname) || empty($givennames));
1786
     *                        $notstrings = (!is_string($surname) || !is_string($givennames));
1787
     *                        if ($empty || $notstrings) {
1788
     *                        return false;
1789
     *                        } else {
1790
     *                        return $value;
1791
     *                        }
1792
     *                        }
1793
     *                        $var = filter_var('Doe, Jane Sue', FILTER_CALLBACK, array('options' => 'foo'));
1794
     *                        </code>
1795
     *                        </p>
1796
     *
1797
     * @return mixed the filtered data, or <b>FALSE</b> if the filter fails
1798
     */
1799 2
    public static function filter_var($variable, int $filter = \FILTER_DEFAULT, $options = null)
1800
    {
1801 2
        if (\func_num_args() < 3) {
1802 2
            $variable = \filter_var($variable, $filter);
1803
        } else {
1804 2
            $variable = \filter_var($variable, $filter, $options);
1805
        }
1806
1807 2
        return self::filter($variable);
1808
    }
1809
1810
    /**
1811
     * "filter_var_array()"-wrapper with normalizes to UTF-8 NFC, converting from WINDOWS-1252 when needed.
1812
     *
1813
     * Gets multiple variables and optionally filters them
1814
     *
1815
     * @see http://php.net/manual/en/function.filter-var-array.php
1816
     *
1817
     * @param array $data       <p>
1818
     *                          An array with string keys containing the data to filter.
1819
     *                          </p>
1820
     * @param mixed $definition [optional] <p>
1821
     *                          An array defining the arguments. A valid key is a string
1822
     *                          containing a variable name and a valid value is either a
1823
     *                          filter type, or an
1824
     *                          array optionally specifying the filter, flags and options.
1825
     *                          If the value is an array, valid keys are filter
1826
     *                          which specifies the filter type,
1827
     *                          flags which specifies any flags that apply to the
1828
     *                          filter, and options which specifies any options that
1829
     *                          apply to the filter. See the example below for a better understanding.
1830
     *                          </p>
1831
     *                          <p>
1832
     *                          This parameter can be also an integer holding a filter constant. Then all values in the
1833
     *                          input array are filtered by this filter.
1834
     *                          </p>
1835
     * @param bool  $add_empty  [optional] <p>
1836
     *                          Add missing keys as <b>NULL</b> to the return value.
1837
     *                          </p>
1838
     *
1839
     * @return mixed an array containing the values of the requested variables on success, or <b>FALSE</b> on failure.
1840
     *               An array value will be <b>FALSE</b> if the filter fails, or <b>NULL</b> if the variable is not
1841
     *               set
1842
     */
1843 2
    public static function filter_var_array(array $data, $definition = null, bool $add_empty = true)
1844
    {
1845 2
        if (\func_num_args() < 2) {
1846 2
            $a = \filter_var_array($data);
1847
        } else {
1848 2
            $a = \filter_var_array($data, $definition, $add_empty);
1849
        }
1850
1851 2
        return self::filter($a);
1852
    }
1853
1854
    /**
1855
     * Checks whether finfo is available on the server.
1856
     *
1857
     * @return bool
1858
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
1859
     */
1860
    public static function finfo_loaded(): bool
1861
    {
1862
        return \class_exists('finfo');
1863
    }
1864
1865
    /**
1866
     * Returns the first $n characters of the string.
1867
     *
1868
     * @param string $str      <p>The input string.</p>
1869
     * @param int    $n        <p>Number of characters to retrieve from the start.</p>
1870
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
1871
     *
1872
     * @return string
1873
     */
1874 13
    public static function first_char(string $str, int $n = 1, string $encoding = 'UTF-8'): string
1875
    {
1876 13
        if ($str === '' || $n <= 0) {
1877 5
            return '';
1878
        }
1879
1880 8
        if ($encoding === 'UTF-8') {
1881 4
            return (string) \mb_substr($str, 0, $n);
1882
        }
1883
1884 4
        return (string) self::substr($str, 0, $n, $encoding);
1885
    }
1886
1887
    /**
1888
     * Check if the number of unicode characters are not more than the specified integer.
1889
     *
1890
     * @param string $str      the original string to be checked
1891
     * @param int    $box_size the size in number of chars to be checked against string
1892
     *
1893
     * @return bool true if string is less than or equal to $box_size, false otherwise
1894
     */
1895 2
    public static function fits_inside(string $str, int $box_size): bool
1896
    {
1897 2
        return self::strlen($str) <= $box_size;
1898
    }
1899
1900
    /**
1901
     * Try to fix simple broken UTF-8 strings.
1902
     *
1903
     * INFO: Take a look at "UTF8::fix_utf8()" if you need a more advanced fix for broken UTF-8 strings.
1904
     *
1905
     * If you received an UTF-8 string that was converted from Windows-1252 as it was ISO-8859-1
1906
     * (ignoring Windows-1252 chars from 80 to 9F) use this function to fix it.
1907
     * See: http://en.wikipedia.org/wiki/Windows-1252
1908
     *
1909
     * @param string $str <p>The input string</p>
1910
     *
1911
     * @return string
1912
     */
1913 46
    public static function fix_simple_utf8(string $str): string
1914
    {
1915 46
        if ($str === '') {
1916 4
            return '';
1917
        }
1918
1919 46
        static $BROKEN_UTF8_TO_UTF8_KEYS_CACHE = null;
1920 46
        static $BROKEN_UTF8_TO_UTF8_VALUES_CACHE = null;
1921
1922 46
        if ($BROKEN_UTF8_TO_UTF8_KEYS_CACHE === null) {
1923 1
            if (self::$BROKEN_UTF8_FIX === null) {
1924 1
                self::$BROKEN_UTF8_FIX = self::getData('utf8_fix');
1925
            }
1926
1927 1
            $BROKEN_UTF8_TO_UTF8_KEYS_CACHE = \array_keys(self::$BROKEN_UTF8_FIX);
1928 1
            $BROKEN_UTF8_TO_UTF8_VALUES_CACHE = \array_values(self::$BROKEN_UTF8_FIX);
1929
        }
1930
1931 46
        return \str_replace($BROKEN_UTF8_TO_UTF8_KEYS_CACHE, $BROKEN_UTF8_TO_UTF8_VALUES_CACHE, $str);
1932
    }
1933
1934
    /**
1935
     * Fix a double (or multiple) encoded UTF8 string.
1936
     *
1937
     * @param string|string[] $str you can use a string or an array of strings
1938
     *
1939
     * @return string|string[]
1940
     *                         Will return the fixed input-"array" or
1941
     *                         the fixed input-"string"
1942
     *
1943
     * @psalm-suppress InvalidReturnType
1944
     */
1945 2
    public static function fix_utf8($str)
1946
    {
1947 2
        if (\is_array($str) === true) {
1948 2
            foreach ($str as $k => &$v) {
1949 2
                $v = self::fix_utf8($v);
1950
            }
1951 2
            unset($v);
1952
1953
            /**
1954
             * @psalm-suppress InvalidReturnStatement
1955
             */
1956 2
            return $str;
1957
        }
1958
1959 2
        $str = (string) $str;
1960 2
        $last = '';
1961 2
        while ($last !== $str) {
1962 2
            $last = $str;
1963
            /**
1964
             * @psalm-suppress PossiblyInvalidArgument
1965
             */
1966 2
            $str = self::to_utf8(
1967 2
                self::utf8_decode($str, true)
1968
            );
1969
        }
1970
1971
        /**
1972
         * @psalm-suppress InvalidReturnStatement
1973
         */
1974 2
        return $str;
1975
    }
1976
1977
    /**
1978
     * Get character of a specific character.
1979
     *
1980
     * @param string $char
1981
     *
1982
     * @return string 'RTL' or 'LTR'
1983
     */
1984 2
    public static function getCharDirection(string $char): string
1985
    {
1986 2
        if (self::$SUPPORT['intlChar'] === true) {
1987
            /** @noinspection PhpComposerExtensionStubsInspection */
1988 2
            $tmpReturn = \IntlChar::charDirection($char);
1989
1990
            // from "IntlChar"-Class
1991
            $charDirection = [
1992 2
                'RTL' => [1, 13, 14, 15, 21],
1993
                'LTR' => [0, 11, 12, 20],
1994
            ];
1995
1996 2
            if (\in_array($tmpReturn, $charDirection['LTR'], true)) {
1997
                return 'LTR';
1998
            }
1999
2000 2
            if (\in_array($tmpReturn, $charDirection['RTL'], true)) {
2001 2
                return 'RTL';
2002
            }
2003
        }
2004
2005 2
        $c = static::chr_to_decimal($char);
2006
2007 2
        if (!($c >= 0x5be && $c <= 0x10b7f)) {
2008 2
            return 'LTR';
2009
        }
2010
2011 2
        if ($c <= 0x85e) {
2012 2
            if ($c === 0x5be ||
2013 2
                $c === 0x5c0 ||
2014 2
                $c === 0x5c3 ||
2015 2
                $c === 0x5c6 ||
2016 2
                ($c >= 0x5d0 && $c <= 0x5ea) ||
2017 2
                ($c >= 0x5f0 && $c <= 0x5f4) ||
2018 2
                $c === 0x608 ||
2019 2
                $c === 0x60b ||
2020 2
                $c === 0x60d ||
2021 2
                $c === 0x61b ||
2022 2
                ($c >= 0x61e && $c <= 0x64a) ||
2023
                ($c >= 0x66d && $c <= 0x66f) ||
2024
                ($c >= 0x671 && $c <= 0x6d5) ||
2025
                ($c >= 0x6e5 && $c <= 0x6e6) ||
2026
                ($c >= 0x6ee && $c <= 0x6ef) ||
2027
                ($c >= 0x6fa && $c <= 0x70d) ||
2028
                $c === 0x710 ||
2029
                ($c >= 0x712 && $c <= 0x72f) ||
2030
                ($c >= 0x74d && $c <= 0x7a5) ||
2031
                $c === 0x7b1 ||
2032
                ($c >= 0x7c0 && $c <= 0x7ea) ||
2033
                ($c >= 0x7f4 && $c <= 0x7f5) ||
2034
                $c === 0x7fa ||
2035
                ($c >= 0x800 && $c <= 0x815) ||
2036
                $c === 0x81a ||
2037
                $c === 0x824 ||
2038
                $c === 0x828 ||
2039
                ($c >= 0x830 && $c <= 0x83e) ||
2040
                ($c >= 0x840 && $c <= 0x858) ||
2041 2
                $c === 0x85e
2042
            ) {
2043 2
                return 'RTL';
2044
            }
2045 2
        } elseif ($c === 0x200f) {
2046
            return 'RTL';
2047 2
        } elseif ($c >= 0xfb1d) {
2048 2
            if ($c === 0xfb1d ||
2049 2
                ($c >= 0xfb1f && $c <= 0xfb28) ||
2050 2
                ($c >= 0xfb2a && $c <= 0xfb36) ||
2051 2
                ($c >= 0xfb38 && $c <= 0xfb3c) ||
2052 2
                $c === 0xfb3e ||
2053 2
                ($c >= 0xfb40 && $c <= 0xfb41) ||
2054 2
                ($c >= 0xfb43 && $c <= 0xfb44) ||
2055 2
                ($c >= 0xfb46 && $c <= 0xfbc1) ||
2056 2
                ($c >= 0xfbd3 && $c <= 0xfd3d) ||
2057 2
                ($c >= 0xfd50 && $c <= 0xfd8f) ||
2058 2
                ($c >= 0xfd92 && $c <= 0xfdc7) ||
2059 2
                ($c >= 0xfdf0 && $c <= 0xfdfc) ||
2060 2
                ($c >= 0xfe70 && $c <= 0xfe74) ||
2061 2
                ($c >= 0xfe76 && $c <= 0xfefc) ||
2062 2
                ($c >= 0x10800 && $c <= 0x10805) ||
2063 2
                $c === 0x10808 ||
2064 2
                ($c >= 0x1080a && $c <= 0x10835) ||
2065 2
                ($c >= 0x10837 && $c <= 0x10838) ||
2066 2
                $c === 0x1083c ||
2067 2
                ($c >= 0x1083f && $c <= 0x10855) ||
2068 2
                ($c >= 0x10857 && $c <= 0x1085f) ||
2069 2
                ($c >= 0x10900 && $c <= 0x1091b) ||
2070 2
                ($c >= 0x10920 && $c <= 0x10939) ||
2071 2
                $c === 0x1093f ||
2072 2
                $c === 0x10a00 ||
2073 2
                ($c >= 0x10a10 && $c <= 0x10a13) ||
2074 2
                ($c >= 0x10a15 && $c <= 0x10a17) ||
2075 2
                ($c >= 0x10a19 && $c <= 0x10a33) ||
2076 2
                ($c >= 0x10a40 && $c <= 0x10a47) ||
2077 2
                ($c >= 0x10a50 && $c <= 0x10a58) ||
2078 2
                ($c >= 0x10a60 && $c <= 0x10a7f) ||
2079 2
                ($c >= 0x10b00 && $c <= 0x10b35) ||
2080 2
                ($c >= 0x10b40 && $c <= 0x10b55) ||
2081 2
                ($c >= 0x10b58 && $c <= 0x10b72) ||
2082 2
                ($c >= 0x10b78 && $c <= 0x10b7f)
2083
            ) {
2084 2
                return 'RTL';
2085
            }
2086
        }
2087
2088 2
        return 'LTR';
2089
    }
2090
2091
    /**
2092
     * Check for php-support.
2093
     *
2094
     * @param string|null $key
2095
     *
2096
     * @return mixed
2097
     *               Return the full support-"array", if $key === null<br>
2098
     *               return bool-value, if $key is used and available<br>
2099
     *               otherwise return <strong>null</strong>
2100
     */
2101 27
    public static function getSupportInfo(string $key = null)
2102
    {
2103 27
        if ($key === null) {
2104 4
            return self::$SUPPORT;
2105
        }
2106
2107 25
        if (self::$INTL_TRANSLITERATOR_LIST === null) {
2108 1
            self::$INTL_TRANSLITERATOR_LIST = self::getData('transliterator_list');
2109
        }
2110
        // compatibility fix for old versions
2111 25
        self::$SUPPORT['intl__transliterator_list_ids'] = self::$INTL_TRANSLITERATOR_LIST;
2112
2113 25
        return self::$SUPPORT[$key] ?? null;
2114
    }
2115
2116
    /**
2117
     * Warning: this method only works for some file-types (png bmp gif jpg rar zip midi exe pdf)
2118
     *          if you need more supported types, please use e.g. "finfo"
2119
     *
2120
     * @param string $str
2121
     * @param array  $fallback with this keys: 'ext', 'mime', 'type'
2122
     *
2123
     * @return array
2124
     *               with this keys: 'ext', 'mime', 'type'
2125
     */
2126 39
    public static function get_file_type(
2127
        string $str,
2128
        array $fallback = [
2129
            'ext'  => null,
2130
            'mime' => 'application/octet-stream',
2131
            'type' => null,
2132
        ]
2133
    ): array {
2134 39
        if ($str === '') {
2135
            return $fallback;
2136
        }
2137
2138 39
        $str_info = \substr($str, 0, 2);
2139 39
        if ($str_info === false || \strlen($str_info) !== 2) {
2140 11
            return $fallback;
2141
        }
2142
2143 35
        $str_info = \unpack('C2chars', $str_info);
2144 35
        if ($str_info === false) {
2145
            return $fallback;
2146
        }
2147 35
        $type_code = (int) ($str_info['chars1'] . $str_info['chars2']);
2148
2149
        // DEBUG
2150
        //var_dump($type_code);
2151
2152
        switch ($type_code) {
2153 35
            case 3780:
2154 5
                $ext = 'pdf';
2155 5
                $mime = 'application/pdf';
2156 5
                $type = 'binary';
2157
2158 5
                break;
2159 35
            case 7790:
2160
                $ext = 'exe';
2161
                $mime = 'application/octet-stream';
2162
                $type = 'binary';
2163
2164
                break;
2165 35
            case 7784:
2166
                $ext = 'midi';
2167
                $mime = 'audio/x-midi';
2168
                $type = 'binary';
2169
2170
                break;
2171 35
            case 8075:
2172 7
                $ext = 'zip';
2173 7
                $mime = 'application/zip';
2174 7
                $type = 'binary';
2175
2176 7
                break;
2177 35
            case 8297:
2178
                $ext = 'rar';
2179
                $mime = 'application/rar';
2180
                $type = 'binary';
2181
2182
                break;
2183 35
            case 255216:
2184
                $ext = 'jpg';
2185
                $mime = 'image/jpeg';
2186
                $type = 'binary';
2187
2188
                break;
2189 35
            case 7173:
2190
                $ext = 'gif';
2191
                $mime = 'image/gif';
2192
                $type = 'binary';
2193
2194
                break;
2195 35
            case 7373:
2196
                $ext = 'tiff';
2197
                $mime = 'image/tiff';
2198
                $type = 'binary';
2199
2200
                break;
2201 35
            case 6677:
2202
                $ext = 'bmp';
2203
                $mime = 'image/bmp';
2204
                $type = 'binary';
2205
2206
                break;
2207 35
            case 13780:
2208 7
                $ext = 'png';
2209 7
                $mime = 'image/png';
2210 7
                $type = 'binary';
2211
2212 7
                break;
2213
            default:
2214 32
                return $fallback;
2215
        }
2216
2217
        return [
2218 7
            'ext'  => $ext,
2219 7
            'mime' => $mime,
2220 7
            'type' => $type,
2221
        ];
2222
    }
2223
2224
    /**
2225
     * @param int    $length        <p>Length of the random string.</p>
2226
     * @param string $possibleChars [optional] <p>Characters string for the random selection.</p>
2227
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
2228
     *
2229
     * @return string
2230
     */
2231 1
    public static function get_random_string(int $length, string $possibleChars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789', string $encoding = 'UTF-8'): string
2232
    {
2233
        // init
2234 1
        $i = 0;
2235 1
        $str = '';
2236
2237
        //
2238
        // add random chars
2239
        //
2240
2241 1
        if ($encoding === 'UTF-8') {
2242 1
            $maxlength = (int) \mb_strlen($possibleChars);
2243 1
            if ($maxlength === 0) {
2244 1
                return '';
2245
            }
2246
2247 1
            while ($i < $length) {
2248
                try {
2249 1
                    $randInt = \random_int(0, $maxlength - 1);
2250
                } catch (\Exception $e) {
2251
                    /** @noinspection RandomApiMigrationInspection */
2252
                    $randInt = \mt_rand(0, $maxlength - 1);
2253
                }
2254 1
                $char = \mb_substr($possibleChars, $randInt, 1);
2255 1
                if ($char !== false) {
2256 1
                    $str .= $char;
2257 1
                    ++$i;
2258
                }
2259
            }
2260
        } else {
2261
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
2262
2263
            $maxlength = (int) self::strlen($possibleChars, $encoding);
2264
            if ($maxlength === 0) {
2265
                return '';
2266
            }
2267
2268
            while ($i < $length) {
2269
                try {
2270
                    $randInt = \random_int(0, $maxlength - 1);
2271
                } catch (\Exception $e) {
2272
                    /** @noinspection RandomApiMigrationInspection */
2273
                    $randInt = \mt_rand(0, $maxlength - 1);
2274
                }
2275
                $char = self::substr($possibleChars, $randInt, 1, $encoding);
2276
                if ($char !== false) {
2277
                    $str .= $char;
2278
                    ++$i;
2279
                }
2280
            }
2281
        }
2282
2283 1
        return $str;
2284
    }
2285
2286
    /**
2287
     * @param int|string $entropyExtra [optional] <p>Extra entropy via a string or int value.</p>
2288
     * @param bool       $md5          [optional] <p>Return the unique identifier as md5-hash? Default: true</p>
2289
     *
2290
     * @return string
2291
     */
2292 1
    public static function get_unique_string($entropyExtra = '', bool $md5 = true): string
2293
    {
2294 1
        $uniqueHelper = \random_int(0, \mt_getrandmax()) .
2295 1
                        \session_id() .
2296 1
                        ($_SERVER['REMOTE_ADDR'] ?? '') .
2297 1
                        ($_SERVER['SERVER_ADDR'] ?? '') .
2298 1
                        $entropyExtra;
2299
2300 1
        $uniqueString = \uniqid($uniqueHelper, true);
2301
2302 1
        if ($md5) {
2303 1
            $uniqueString = \md5($uniqueString . $uniqueHelper);
2304
        }
2305
2306 1
        return $uniqueString;
2307
    }
2308
2309
    /**
2310
     * alias for "UTF8::string_has_bom()"
2311
     *
2312
     * @param string $str
2313
     *
2314
     * @return bool
2315
     *
2316
     * @see UTF8::string_has_bom()
2317
     * @deprecated <p>use "UTF8::string_has_bom()"</p>
2318
     */
2319 2
    public static function hasBom(string $str): bool
2320
    {
2321 2
        return self::string_has_bom($str);
2322
    }
2323
2324
    /**
2325
     * Returns true if the string contains a lower case char, false otherwise.
2326
     *
2327
     * @param string $str <p>The input string.</p>
2328
     *
2329
     * @return bool whether or not the string contains a lower case character
2330
     */
2331 47
    public static function has_lowercase(string $str): bool
2332
    {
2333 47
        if (self::$SUPPORT['mbstring'] === true) {
2334
            /** @noinspection PhpComposerExtensionStubsInspection */
2335 47
            return \mb_ereg_match('.*[[:lower:]]', $str);
2336
        }
2337
2338
        return self::str_matches_pattern($str, '.*[[:lower:]]');
2339
    }
2340
2341
    /**
2342
     * Returns true if the string contains an upper case char, false otherwise.
2343
     *
2344
     * @param string $str <p>The input string.</p>
2345
     *
2346
     * @return bool whether or not the string contains an upper case character
2347
     */
2348 12
    public static function has_uppercase(string $str): bool
2349
    {
2350 12
        if (self::$SUPPORT['mbstring'] === true) {
2351
            /** @noinspection PhpComposerExtensionStubsInspection */
2352 12
            return \mb_ereg_match('.*[[:upper:]]', $str);
2353
        }
2354
2355
        return self::str_matches_pattern($str, '.*[[:upper:]]');
2356
    }
2357
2358
    /**
2359
     * Converts a hexadecimal-value into an UTF-8 character.
2360
     *
2361
     * @param string $hexdec <p>The hexadecimal value.</p>
2362
     *
2363
     * @return false|string one single UTF-8 character
2364
     */
2365 4
    public static function hex_to_chr(string $hexdec)
2366
    {
2367 4
        return self::decimal_to_chr(\hexdec($hexdec));
2368
    }
2369
2370
    /**
2371
     * Converts hexadecimal U+xxxx code point representation to integer.
2372
     *
2373
     * INFO: opposite to UTF8::int_to_hex()
2374
     *
2375
     * @param string $hexDec <p>The hexadecimal code point representation.</p>
2376
     *
2377
     * @return false|int the code point, or false on failure
2378
     */
2379 2
    public static function hex_to_int($hexDec)
2380
    {
2381
        // init
2382 2
        $hexDec = (string) $hexDec;
2383
2384 2
        if ($hexDec === '') {
2385 2
            return false;
2386
        }
2387
2388 2
        if (\preg_match('/^(?:\\\u|U\+|)([a-zA-Z0-9]{4,6})$/', $hexDec, $match)) {
2389 2
            return \intval($match[1], 16);
2390
        }
2391
2392 2
        return false;
2393
    }
2394
2395
    /**
2396
     * alias for "UTF8::html_entity_decode()"
2397
     *
2398
     * @param string $str
2399
     * @param int    $flags
2400
     * @param string $encoding
2401
     *
2402
     * @return string
2403
     *
2404
     * @see UTF8::html_entity_decode()
2405
     */
2406 4
    public static function html_decode(string $str, int $flags = null, string $encoding = 'UTF-8'): string
2407
    {
2408 4
        return self::html_entity_decode($str, $flags, $encoding);
2409
    }
2410
2411
    /**
2412
     * Converts a UTF-8 string to a series of HTML numbered entities.
2413
     *
2414
     * INFO: opposite to UTF8::html_decode()
2415
     *
2416
     * @param string $str            <p>The Unicode string to be encoded as numbered entities.</p>
2417
     * @param bool   $keepAsciiChars [optional] <p>Keep ASCII chars.</p>
2418
     * @param string $encoding       [optional] <p>Set the charset for e.g. "mb_" function</p>
2419
     *
2420
     * @return string HTML numbered entities
2421
     */
2422 14
    public static function html_encode(string $str, bool $keepAsciiChars = false, string $encoding = 'UTF-8'): string
2423
    {
2424 14
        if ($str === '') {
2425 4
            return '';
2426
        }
2427
2428 14
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
2429 4
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
2430
        }
2431
2432
        // INFO: http://stackoverflow.com/questions/35854535/better-explanation-of-convmap-in-mb-encode-numericentity
2433 14
        if (self::$SUPPORT['mbstring'] === true) {
2434 14
            $startCode = 0x00;
2435 14
            if ($keepAsciiChars === true) {
2436 13
                $startCode = 0x80;
2437
            }
2438
2439 14
            if ($encoding === 'UTF-8') {
2440 14
                return \mb_encode_numericentity(
2441 14
                    $str,
2442 14
                    [$startCode, 0xfffff, 0, 0xfffff, 0]
2443
                );
2444
            }
2445
2446 4
            return \mb_encode_numericentity(
2447 4
                $str,
2448 4
                [$startCode, 0xfffff, 0, 0xfffff, 0],
2449 4
                $encoding
2450
            );
2451
        }
2452
2453
        //
2454
        // fallback via vanilla php
2455
        //
2456
2457
        return \implode(
2458
            '',
2459
            \array_map(
2460
                static function (string $chr) use ($keepAsciiChars, $encoding): string {
2461
                    return self::single_chr_html_encode($chr, $keepAsciiChars, $encoding);
2462
                },
2463
                self::str_split($str)
2464
            )
2465
        );
2466
    }
2467
2468
    /**
2469
     * UTF-8 version of html_entity_decode()
2470
     *
2471
     * The reason we are not using html_entity_decode() by itself is because
2472
     * while it is not technically correct to leave out the semicolon
2473
     * at the end of an entity most browsers will still interpret the entity
2474
     * correctly. html_entity_decode() does not convert entities without
2475
     * semicolons, so we are left with our own little solution here. Bummer.
2476
     *
2477
     * Convert all HTML entities to their applicable characters
2478
     *
2479
     * INFO: opposite to UTF8::html_encode()
2480
     *
2481
     * @see http://php.net/manual/en/function.html-entity-decode.php
2482
     *
2483
     * @param string $str      <p>
2484
     *                         The input string.
2485
     *                         </p>
2486
     * @param int    $flags    [optional] <p>
2487
     *                         A bitmask of one or more of the following flags, which specify how to handle quotes
2488
     *                         and which document type to use. The default is ENT_COMPAT | ENT_HTML401.
2489
     *                         <table>
2490
     *                         Available <i>flags</i> constants
2491
     *                         <tr valign="top">
2492
     *                         <td>Constant Name</td>
2493
     *                         <td>Description</td>
2494
     *                         </tr>
2495
     *                         <tr valign="top">
2496
     *                         <td><b>ENT_COMPAT</b></td>
2497
     *                         <td>Will convert double-quotes and leave single-quotes alone.</td>
2498
     *                         </tr>
2499
     *                         <tr valign="top">
2500
     *                         <td><b>ENT_QUOTES</b></td>
2501
     *                         <td>Will convert both double and single quotes.</td>
2502
     *                         </tr>
2503
     *                         <tr valign="top">
2504
     *                         <td><b>ENT_NOQUOTES</b></td>
2505
     *                         <td>Will leave both double and single quotes unconverted.</td>
2506
     *                         </tr>
2507
     *                         <tr valign="top">
2508
     *                         <td><b>ENT_HTML401</b></td>
2509
     *                         <td>
2510
     *                         Handle code as HTML 4.01.
2511
     *                         </td>
2512
     *                         </tr>
2513
     *                         <tr valign="top">
2514
     *                         <td><b>ENT_XML1</b></td>
2515
     *                         <td>
2516
     *                         Handle code as XML 1.
2517
     *                         </td>
2518
     *                         </tr>
2519
     *                         <tr valign="top">
2520
     *                         <td><b>ENT_XHTML</b></td>
2521
     *                         <td>
2522
     *                         Handle code as XHTML.
2523
     *                         </td>
2524
     *                         </tr>
2525
     *                         <tr valign="top">
2526
     *                         <td><b>ENT_HTML5</b></td>
2527
     *                         <td>
2528
     *                         Handle code as HTML 5.
2529
     *                         </td>
2530
     *                         </tr>
2531
     *                         </table>
2532
     *                         </p>
2533
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
2534
     *
2535
     * @return string the decoded string
2536
     */
2537 46
    public static function html_entity_decode(string $str, int $flags = null, string $encoding = 'UTF-8'): string
2538
    {
2539
        if (
2540 46
            !isset($str[3]) // examples: &; || &x;
2541
            ||
2542 46
            \strpos($str, '&') === false // no "&"
2543
        ) {
2544 23
            return $str;
2545
        }
2546
2547 44
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
2548 9
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
2549
        }
2550
2551 44
        if ($flags === null) {
2552 10
            $flags = \ENT_QUOTES | \ENT_HTML5;
2553
        }
2554
2555
        if (
2556 44
            $encoding !== 'UTF-8'
2557
            &&
2558 44
            $encoding !== 'ISO-8859-1'
2559
            &&
2560 44
            $encoding !== 'WINDOWS-1252'
2561
            &&
2562 44
            self::$SUPPORT['mbstring'] === false
2563
        ) {
2564
            \trigger_error('UTF8::html_entity_decode() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
2565
        }
2566
2567
        do {
2568 44
            $str_compare = $str;
2569
2570
            // INFO: http://stackoverflow.com/questions/35854535/better-explanation-of-convmap-in-mb-encode-numericentity
2571 44
            if (self::$SUPPORT['mbstring'] === true) {
2572 44
                if ($encoding === 'UTF-8') {
2573 44
                    $str = \mb_decode_numericentity(
2574 44
                        $str,
2575 44
                        [0x80, 0xfffff, 0, 0xfffff, 0]
2576
                    );
2577
                } else {
2578 4
                    $str = \mb_decode_numericentity(
2579 4
                        $str,
2580 4
                        [0x80, 0xfffff, 0, 0xfffff, 0],
2581 44
                        $encoding
2582
                    );
2583
                }
2584
            } else {
2585
                $str = (string) \preg_replace_callback(
2586
                    "/&#\d{2,6};/",
2587
                    /**
2588
                     * @param string[] $matches
2589
                     *
2590
                     * @return string
2591
                     */
2592
                    static function (array $matches) use ($encoding): string {
2593
                        $returnTmp = \mb_convert_encoding($matches[0], $encoding, 'HTML-ENTITIES');
2594
                        if ($returnTmp !== '"' && $returnTmp !== "'") {
2595
                            return $returnTmp;
2596
                        }
2597
2598
                        return $matches[0];
2599
                    },
2600
                    $str
2601
                );
2602
            }
2603
2604 44
            if (\strpos($str, '&') !== false) {
2605 40
                if (\strpos($str, '&#') !== false) {
2606
                    // decode also numeric & UTF16 two byte entities
2607 32
                    $str = (string) \preg_replace(
2608 32
                        '/(&#(?:x0*[0-9a-fA-F]{2,6}(?![0-9a-fA-F;])|(?:0*\d{2,6}(?![0-9;]))))/S',
2609 32
                        '$1;',
2610 32
                        $str
2611
                    );
2612
                }
2613
2614 40
                $str = \html_entity_decode(
2615 40
                    $str,
2616 40
                    $flags,
2617 40
                    $encoding
2618
                );
2619
            }
2620 44
        } while ($str_compare !== $str);
2621
2622 44
        return $str;
2623
    }
2624
2625
    /**
2626
     * Create a escape html version of the string via "UTF8::htmlspecialchars()".
2627
     *
2628
     * @param string $str
2629
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
2630
     *
2631
     * @return string
2632
     */
2633 6
    public static function html_escape(string $str, string $encoding = 'UTF-8'): string
2634
    {
2635 6
        return self::htmlspecialchars(
2636 6
            $str,
2637 6
            \ENT_QUOTES | \ENT_SUBSTITUTE,
2638 6
            $encoding
2639
        );
2640
    }
2641
2642
    /**
2643
     * Remove empty html-tag.
2644
     *
2645
     * e.g.: <tag></tag>
2646
     *
2647
     * @param string $str
2648
     *
2649
     * @return string
2650
     */
2651 1
    public static function html_stripe_empty_tags(string $str): string
2652
    {
2653 1
        return (string) \preg_replace(
2654 1
            "/<[^\/>]*>(([\s]?)*|)<\/[^>]*>/u",
2655 1
            '',
2656 1
            $str
2657
        );
2658
    }
2659
2660
    /**
2661
     * Convert all applicable characters to HTML entities: UTF-8 version of htmlentities()
2662
     *
2663
     * @see http://php.net/manual/en/function.htmlentities.php
2664
     *
2665
     * @param string $str           <p>
2666
     *                              The input string.
2667
     *                              </p>
2668
     * @param int    $flags         [optional] <p>
2669
     *                              A bitmask of one or more of the following flags, which specify how to handle
2670
     *                              quotes, invalid code unit sequences and the used document type. The default is
2671
     *                              ENT_COMPAT | ENT_HTML401.
2672
     *                              <table>
2673
     *                              Available <i>flags</i> constants
2674
     *                              <tr valign="top">
2675
     *                              <td>Constant Name</td>
2676
     *                              <td>Description</td>
2677
     *                              </tr>
2678
     *                              <tr valign="top">
2679
     *                              <td><b>ENT_COMPAT</b></td>
2680
     *                              <td>Will convert double-quotes and leave single-quotes alone.</td>
2681
     *                              </tr>
2682
     *                              <tr valign="top">
2683
     *                              <td><b>ENT_QUOTES</b></td>
2684
     *                              <td>Will convert both double and single quotes.</td>
2685
     *                              </tr>
2686
     *                              <tr valign="top">
2687
     *                              <td><b>ENT_NOQUOTES</b></td>
2688
     *                              <td>Will leave both double and single quotes unconverted.</td>
2689
     *                              </tr>
2690
     *                              <tr valign="top">
2691
     *                              <td><b>ENT_IGNORE</b></td>
2692
     *                              <td>
2693
     *                              Silently discard invalid code unit sequences instead of returning
2694
     *                              an empty string. Using this flag is discouraged as it
2695
     *                              may have security implications.
2696
     *                              </td>
2697
     *                              </tr>
2698
     *                              <tr valign="top">
2699
     *                              <td><b>ENT_SUBSTITUTE</b></td>
2700
     *                              <td>
2701
     *                              Replace invalid code unit sequences with a Unicode Replacement Character
2702
     *                              U+FFFD (UTF-8) or &#38;#38;#FFFD; (otherwise) instead of returning an empty
2703
     *                              string.
2704
     *                              </td>
2705
     *                              </tr>
2706
     *                              <tr valign="top">
2707
     *                              <td><b>ENT_DISALLOWED</b></td>
2708
     *                              <td>
2709
     *                              Replace invalid code points for the given document type with a
2710
     *                              Unicode Replacement Character U+FFFD (UTF-8) or &#38;#38;#FFFD;
2711
     *                              (otherwise) instead of leaving them as is. This may be useful, for
2712
     *                              instance, to ensure the well-formedness of XML documents with
2713
     *                              embedded external content.
2714
     *                              </td>
2715
     *                              </tr>
2716
     *                              <tr valign="top">
2717
     *                              <td><b>ENT_HTML401</b></td>
2718
     *                              <td>
2719
     *                              Handle code as HTML 4.01.
2720
     *                              </td>
2721
     *                              </tr>
2722
     *                              <tr valign="top">
2723
     *                              <td><b>ENT_XML1</b></td>
2724
     *                              <td>
2725
     *                              Handle code as XML 1.
2726
     *                              </td>
2727
     *                              </tr>
2728
     *                              <tr valign="top">
2729
     *                              <td><b>ENT_XHTML</b></td>
2730
     *                              <td>
2731
     *                              Handle code as XHTML.
2732
     *                              </td>
2733
     *                              </tr>
2734
     *                              <tr valign="top">
2735
     *                              <td><b>ENT_HTML5</b></td>
2736
     *                              <td>
2737
     *                              Handle code as HTML 5.
2738
     *                              </td>
2739
     *                              </tr>
2740
     *                              </table>
2741
     *                              </p>
2742
     * @param string $encoding      [optional] <p>
2743
     *                              Like <b>htmlspecialchars</b>,
2744
     *                              <b>htmlentities</b> takes an optional third argument
2745
     *                              <i>encoding</i> which defines encoding used in
2746
     *                              conversion.
2747
     *                              Although this argument is technically optional, you are highly
2748
     *                              encouraged to specify the correct value for your code.
2749
     *                              </p>
2750
     * @param bool   $double_encode [optional] <p>
2751
     *                              When <i>double_encode</i> is turned off PHP will not
2752
     *                              encode existing html entities. The default is to convert everything.
2753
     *                              </p>
2754
     *
2755
     * @return string
2756
     *                <p>
2757
     *                The encoded string.
2758
     *                <br><br>
2759
     *                If the input <i>string</i> contains an invalid code unit
2760
     *                sequence within the given <i>encoding</i> an empty string
2761
     *                will be returned, unless either the <b>ENT_IGNORE</b> or
2762
     *                <b>ENT_SUBSTITUTE</b> flags are set.
2763
     *                </p>
2764
     */
2765 9
    public static function htmlentities(
2766
        string $str,
2767
        int $flags = \ENT_COMPAT,
2768
        string $encoding = 'UTF-8',
2769
        bool $double_encode = true
2770
    ): string {
2771 9
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
2772 7
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
2773
        }
2774
2775 9
        $str = \htmlentities($str, $flags, $encoding, $double_encode);
2776
2777
        /**
2778
         * PHP doesn't replace a backslash to its html entity since this is something
2779
         * that's mostly used to escape characters when inserting in a database. Since
2780
         * we're using a decent database layer, we don't need this shit and we're replacing
2781
         * the double backslashes by its' html entity equivalent.
2782
         *
2783
         * https://github.com/forkcms/library/blob/master/spoon/filter/filter.php#L303
2784
         */
2785 9
        $str = \str_replace('\\', '&#92;', $str);
2786
2787 9
        return self::html_encode($str, true, $encoding);
2788
    }
2789
2790
    /**
2791
     * Convert only special characters to HTML entities: UTF-8 version of htmlspecialchars()
2792
     *
2793
     * INFO: Take a look at "UTF8::htmlentities()"
2794
     *
2795
     * @see http://php.net/manual/en/function.htmlspecialchars.php
2796
     *
2797
     * @param string $str           <p>
2798
     *                              The string being converted.
2799
     *                              </p>
2800
     * @param int    $flags         [optional] <p>
2801
     *                              A bitmask of one or more of the following flags, which specify how to handle
2802
     *                              quotes, invalid code unit sequences and the used document type. The default is
2803
     *                              ENT_COMPAT | ENT_HTML401.
2804
     *                              <table>
2805
     *                              Available <i>flags</i> constants
2806
     *                              <tr valign="top">
2807
     *                              <td>Constant Name</td>
2808
     *                              <td>Description</td>
2809
     *                              </tr>
2810
     *                              <tr valign="top">
2811
     *                              <td><b>ENT_COMPAT</b></td>
2812
     *                              <td>Will convert double-quotes and leave single-quotes alone.</td>
2813
     *                              </tr>
2814
     *                              <tr valign="top">
2815
     *                              <td><b>ENT_QUOTES</b></td>
2816
     *                              <td>Will convert both double and single quotes.</td>
2817
     *                              </tr>
2818
     *                              <tr valign="top">
2819
     *                              <td><b>ENT_NOQUOTES</b></td>
2820
     *                              <td>Will leave both double and single quotes unconverted.</td>
2821
     *                              </tr>
2822
     *                              <tr valign="top">
2823
     *                              <td><b>ENT_IGNORE</b></td>
2824
     *                              <td>
2825
     *                              Silently discard invalid code unit sequences instead of returning
2826
     *                              an empty string. Using this flag is discouraged as it
2827
     *                              may have security implications.
2828
     *                              </td>
2829
     *                              </tr>
2830
     *                              <tr valign="top">
2831
     *                              <td><b>ENT_SUBSTITUTE</b></td>
2832
     *                              <td>
2833
     *                              Replace invalid code unit sequences with a Unicode Replacement Character
2834
     *                              U+FFFD (UTF-8) or &#38;#38;#FFFD; (otherwise) instead of returning an empty
2835
     *                              string.
2836
     *                              </td>
2837
     *                              </tr>
2838
     *                              <tr valign="top">
2839
     *                              <td><b>ENT_DISALLOWED</b></td>
2840
     *                              <td>
2841
     *                              Replace invalid code points for the given document type with a
2842
     *                              Unicode Replacement Character U+FFFD (UTF-8) or &#38;#38;#FFFD;
2843
     *                              (otherwise) instead of leaving them as is. This may be useful, for
2844
     *                              instance, to ensure the well-formedness of XML documents with
2845
     *                              embedded external content.
2846
     *                              </td>
2847
     *                              </tr>
2848
     *                              <tr valign="top">
2849
     *                              <td><b>ENT_HTML401</b></td>
2850
     *                              <td>
2851
     *                              Handle code as HTML 4.01.
2852
     *                              </td>
2853
     *                              </tr>
2854
     *                              <tr valign="top">
2855
     *                              <td><b>ENT_XML1</b></td>
2856
     *                              <td>
2857
     *                              Handle code as XML 1.
2858
     *                              </td>
2859
     *                              </tr>
2860
     *                              <tr valign="top">
2861
     *                              <td><b>ENT_XHTML</b></td>
2862
     *                              <td>
2863
     *                              Handle code as XHTML.
2864
     *                              </td>
2865
     *                              </tr>
2866
     *                              <tr valign="top">
2867
     *                              <td><b>ENT_HTML5</b></td>
2868
     *                              <td>
2869
     *                              Handle code as HTML 5.
2870
     *                              </td>
2871
     *                              </tr>
2872
     *                              </table>
2873
     *                              </p>
2874
     * @param string $encoding      [optional] <p>
2875
     *                              Defines encoding used in conversion.
2876
     *                              </p>
2877
     *                              <p>
2878
     *                              For the purposes of this function, the encodings
2879
     *                              ISO-8859-1, ISO-8859-15,
2880
     *                              UTF-8, cp866,
2881
     *                              cp1251, cp1252, and
2882
     *                              KOI8-R are effectively equivalent, provided the
2883
     *                              <i>string</i> itself is valid for the encoding, as
2884
     *                              the characters affected by <b>htmlspecialchars</b> occupy
2885
     *                              the same positions in all of these encodings.
2886
     *                              </p>
2887
     * @param bool   $double_encode [optional] <p>
2888
     *                              When <i>double_encode</i> is turned off PHP will not
2889
     *                              encode existing html entities, the default is to convert everything.
2890
     *                              </p>
2891
     *
2892
     * @return string the converted string.
2893
     *                </p>
2894
     *                <p>
2895
     *                If the input <i>string</i> contains an invalid code unit
2896
     *                sequence within the given <i>encoding</i> an empty string
2897
     *                will be returned, unless either the <b>ENT_IGNORE</b> or
2898
     *                <b>ENT_SUBSTITUTE</b> flags are set
2899
     */
2900 8
    public static function htmlspecialchars(
2901
        string $str,
2902
        int $flags = \ENT_COMPAT,
2903
        string $encoding = 'UTF-8',
2904
        bool $double_encode = true
2905
    ): string {
2906 8
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
2907 8
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
2908
        }
2909
2910 8
        return \htmlspecialchars($str, $flags, $encoding, $double_encode);
2911
    }
2912
2913
    /**
2914
     * Checks whether iconv is available on the server.
2915
     *
2916
     * @return bool
2917
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
2918
     */
2919
    public static function iconv_loaded(): bool
2920
    {
2921
        return \extension_loaded('iconv');
2922
    }
2923
2924
    /**
2925
     * alias for "UTF8::decimal_to_chr()"
2926
     *
2927
     * @param mixed $int
2928
     *
2929
     * @return string
2930
     *
2931
     * @see UTF8::decimal_to_chr()
2932
     */
2933 4
    public static function int_to_chr($int): string
2934
    {
2935 4
        return self::decimal_to_chr($int);
2936
    }
2937
2938
    /**
2939
     * Converts Integer to hexadecimal U+xxxx code point representation.
2940
     *
2941
     * INFO: opposite to UTF8::hex_to_int()
2942
     *
2943
     * @param int    $int  <p>The integer to be converted to hexadecimal code point.</p>
2944
     * @param string $pfix [optional]
2945
     *
2946
     * @return string the code point, or empty string on failure
2947
     */
2948 6
    public static function int_to_hex(int $int, string $pfix = 'U+'): string
2949
    {
2950 6
        $hex = \dechex($int);
2951
2952 6
        $hex = (\strlen($hex) < 4 ? \substr('0000' . $hex, -4) : $hex);
2953
2954 6
        return $pfix . $hex . '';
2955
    }
2956
2957
    /**
2958
     * Checks whether intl-char is available on the server.
2959
     *
2960
     * @return bool
2961
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
2962
     */
2963
    public static function intlChar_loaded(): bool
2964
    {
2965
        return \class_exists('IntlChar');
2966
    }
2967
2968
    /**
2969
     * Checks whether intl is available on the server.
2970
     *
2971
     * @return bool
2972
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
2973
     */
2974 5
    public static function intl_loaded(): bool
2975
    {
2976 5
        return \extension_loaded('intl');
2977
    }
2978
2979
    /**
2980
     * alias for "UTF8::is_ascii()"
2981
     *
2982
     * @param string $str
2983
     *
2984
     * @return bool
2985
     *
2986
     * @see UTF8::is_ascii()
2987
     * @deprecated <p>use "UTF8::is_ascii()"</p>
2988
     */
2989 2
    public static function isAscii(string $str): bool
2990
    {
2991 2
        return self::is_ascii($str);
2992
    }
2993
2994
    /**
2995
     * alias for "UTF8::is_base64()"
2996
     *
2997
     * @param string $str
2998
     *
2999
     * @return bool
3000
     *
3001
     * @see UTF8::is_base64()
3002
     * @deprecated <p>use "UTF8::is_base64()"</p>
3003
     */
3004 2
    public static function isBase64($str): bool
3005
    {
3006 2
        return self::is_base64($str);
3007
    }
3008
3009
    /**
3010
     * alias for "UTF8::is_binary()"
3011
     *
3012
     * @param mixed $str
3013
     * @param bool  $strict
3014
     *
3015
     * @return bool
3016
     *
3017
     * @see UTF8::is_binary()
3018
     * @deprecated <p>use "UTF8::is_binary()"</p>
3019
     */
3020 4
    public static function isBinary($str, $strict = false): bool
3021
    {
3022 4
        return self::is_binary($str, $strict);
3023
    }
3024
3025
    /**
3026
     * alias for "UTF8::is_bom()"
3027
     *
3028
     * @param string $utf8_chr
3029
     *
3030
     * @return bool
3031
     *
3032
     * @see UTF8::is_bom()
3033
     * @deprecated <p>use "UTF8::is_bom()"</p>
3034
     */
3035 2
    public static function isBom(string $utf8_chr): bool
3036
    {
3037 2
        return self::is_bom($utf8_chr);
3038
    }
3039
3040
    /**
3041
     * alias for "UTF8::is_html()"
3042
     *
3043
     * @param string $str
3044
     *
3045
     * @return bool
3046
     *
3047
     * @see UTF8::is_html()
3048
     * @deprecated <p>use "UTF8::is_html()"</p>
3049
     */
3050 2
    public static function isHtml(string $str): bool
3051
    {
3052 2
        return self::is_html($str);
3053
    }
3054
3055
    /**
3056
     * alias for "UTF8::is_json()"
3057
     *
3058
     * @param string $str
3059
     *
3060
     * @return bool
3061
     *
3062
     * @see UTF8::is_json()
3063
     * @deprecated <p>use "UTF8::is_json()"</p>
3064
     */
3065
    public static function isJson(string $str): bool
3066
    {
3067
        return self::is_json($str);
3068
    }
3069
3070
    /**
3071
     * alias for "UTF8::is_utf16()"
3072
     *
3073
     * @param mixed $str
3074
     *
3075
     * @return false|int
3076
     *                   <strong>false</strong> if is't not UTF16,<br>
3077
     *                   <strong>1</strong> for UTF-16LE,<br>
3078
     *                   <strong>2</strong> for UTF-16BE
3079
     *
3080
     * @see UTF8::is_utf16()
3081
     * @deprecated <p>use "UTF8::is_utf16()"</p>
3082
     */
3083 2
    public static function isUtf16($str)
3084
    {
3085 2
        return self::is_utf16($str);
3086
    }
3087
3088
    /**
3089
     * alias for "UTF8::is_utf32()"
3090
     *
3091
     * @param mixed $str
3092
     *
3093
     * @return false|int
3094
     *                   <strong>false</strong> if is't not UTF16,
3095
     *                   <strong>1</strong> for UTF-32LE,
3096
     *                   <strong>2</strong> for UTF-32BE
3097
     *
3098
     * @see UTF8::is_utf32()
3099
     * @deprecated <p>use "UTF8::is_utf32()"</p>
3100
     */
3101 2
    public static function isUtf32($str)
3102
    {
3103 2
        return self::is_utf32($str);
3104
    }
3105
3106
    /**
3107
     * alias for "UTF8::is_utf8()"
3108
     *
3109
     * @param string $str
3110
     * @param bool   $strict
3111
     *
3112
     * @return bool
3113
     *
3114
     * @see UTF8::is_utf8()
3115
     * @deprecated <p>use "UTF8::is_utf8()"</p>
3116
     */
3117 17
    public static function isUtf8($str, $strict = false): bool
3118
    {
3119 17
        return self::is_utf8($str, $strict);
3120
    }
3121
3122
    /**
3123
     * Returns true if the string contains only alphabetic chars, false otherwise.
3124
     *
3125
     * @param string $str
3126
     *
3127
     * @return bool
3128
     *              Whether or not $str contains only alphabetic chars
3129
     */
3130 10
    public static function is_alpha(string $str): bool
3131
    {
3132 10
        if (self::$SUPPORT['mbstring'] === true) {
3133
            /** @noinspection PhpComposerExtensionStubsInspection */
3134 10
            return \mb_ereg_match('^[[:alpha:]]*$', $str);
3135
        }
3136
3137
        return self::str_matches_pattern($str, '^[[:alpha:]]*$');
3138
    }
3139
3140
    /**
3141
     * Returns true if the string contains only alphabetic and numeric chars, false otherwise.
3142
     *
3143
     * @param string $str
3144
     *
3145
     * @return bool
3146
     *              Whether or not $str contains only alphanumeric chars
3147
     */
3148 13
    public static function is_alphanumeric(string $str): bool
3149
    {
3150 13
        if (self::$SUPPORT['mbstring'] === true) {
3151
            /** @noinspection PhpComposerExtensionStubsInspection */
3152 13
            return \mb_ereg_match('^[[:alnum:]]*$', $str);
3153
        }
3154
3155
        return self::str_matches_pattern($str, '^[[:alnum:]]*$');
3156
    }
3157
3158
    /**
3159
     * Checks if a string is 7 bit ASCII.
3160
     *
3161
     * @param string $str <p>The string to check.</p>
3162
     *
3163
     * @return bool
3164
     *              <strong>true</strong> if it is ASCII<br>
3165
     *              <strong>false</strong> otherwise
3166
     */
3167 137
    public static function is_ascii(string $str): bool
3168
    {
3169 137
        if ($str === '') {
3170 10
            return true;
3171
        }
3172
3173 136
        return !\preg_match('/[^\x09\x10\x13\x0A\x0D\x20-\x7E]/', $str);
3174
    }
3175
3176
    /**
3177
     * Returns true if the string is base64 encoded, false otherwise.
3178
     *
3179
     * @param mixed|string $str                <p>The input string.</p>
3180
     * @param bool         $emptyStringIsValid [optional] <p>Is an empty string valid base64 or not?</p>
3181
     *
3182
     * @return bool whether or not $str is base64 encoded
3183
     */
3184 16
    public static function is_base64($str, $emptyStringIsValid = false): bool
3185
    {
3186 16
        if ($emptyStringIsValid === false && $str === '') {
3187 3
            return false;
3188
        }
3189
3190
        /**
3191
         * @psalm-suppress RedundantConditionGivenDocblockType
3192
         */
3193 15
        if (\is_string($str) === false) {
3194 2
            return false;
3195
        }
3196
3197 15
        $base64String = \base64_decode($str, true);
3198
3199 15
        return $base64String !== false && \base64_encode($base64String) === $str;
3200
    }
3201
3202
    /**
3203
     * Check if the input is binary... (is look like a hack).
3204
     *
3205
     * @param mixed $input
3206
     * @param bool  $strict
3207
     *
3208
     * @return bool
3209
     */
3210 39
    public static function is_binary($input, bool $strict = false): bool
3211
    {
3212 39
        $input = (string) $input;
3213 39
        if ($input === '') {
3214 10
            return false;
3215
        }
3216
3217 39
        if (\preg_match('~^[01]+$~', $input)) {
3218 13
            return true;
3219
        }
3220
3221 39
        $ext = self::get_file_type($input);
3222 39
        if ($ext['type'] === 'binary') {
3223 7
            return true;
3224
        }
3225
3226 36
        $testLength = \strlen($input);
3227 36
        $testNull = \substr_count($input, "\x0", 0, $testLength);
3228 36
        if (($testNull / $testLength) > 0.25) {
3229 12
            return true;
3230
        }
3231
3232 34
        if ($strict === true) {
3233 34
            if (self::$SUPPORT['finfo'] === false) {
3234
                throw new \RuntimeException('ext-fileinfo: is not installed');
3235
            }
3236
3237
            /** @noinspection PhpComposerExtensionStubsInspection */
3238 34
            $finfo_encoding = (new \finfo(\FILEINFO_MIME_ENCODING))->buffer($input);
3239 34
            if ($finfo_encoding && $finfo_encoding === 'binary') {
3240 15
                return true;
3241
            }
3242
        }
3243
3244 30
        return false;
3245
    }
3246
3247
    /**
3248
     * Check if the file is binary.
3249
     *
3250
     * @param string $file
3251
     *
3252
     * @return bool
3253
     */
3254 6
    public static function is_binary_file($file): bool
3255
    {
3256
        // init
3257 6
        $block = '';
3258
3259 6
        $fp = \fopen($file, 'rb');
3260 6
        if (\is_resource($fp)) {
3261 6
            $block = \fread($fp, 512);
3262 6
            \fclose($fp);
3263
        }
3264
3265 6
        if ($block === '') {
3266 2
            return false;
3267
        }
3268
3269 6
        return self::is_binary($block, true);
3270
    }
3271
3272
    /**
3273
     * Returns true if the string contains only whitespace chars, false otherwise.
3274
     *
3275
     * @param string $str
3276
     *
3277
     * @return bool
3278
     *              Whether or not $str contains only whitespace characters
3279
     */
3280 15
    public static function is_blank(string $str): bool
3281
    {
3282 15
        if (self::$SUPPORT['mbstring'] === true) {
3283
            /** @noinspection PhpComposerExtensionStubsInspection */
3284 15
            return \mb_ereg_match('^[[:space:]]*$', $str);
3285
        }
3286
3287
        return self::str_matches_pattern($str, '^[[:space:]]*$');
3288
    }
3289
3290
    /**
3291
     * Checks if the given string is equal to any "Byte Order Mark".
3292
     *
3293
     * WARNING: Use "UTF8::string_has_bom()" if you will check BOM in a string.
3294
     *
3295
     * @param string $str <p>The input string.</p>
3296
     *
3297
     * @return bool
3298
     *              <strong>true</strong> if the $utf8_chr is Byte Order Mark, <strong>false</strong> otherwise
3299
     */
3300 2
    public static function is_bom($str): bool
3301
    {
3302
        /** @noinspection PhpUnusedLocalVariableInspection */
3303 2
        foreach (self::$BOM as $bomString => &$bomByteLength) {
3304 2
            if ($str === $bomString) {
3305 2
                return true;
3306
            }
3307
        }
3308
3309 2
        return false;
3310
    }
3311
3312
    /**
3313
     * Determine whether the string is considered to be empty.
3314
     *
3315
     * A variable is considered empty if it does not exist or if its value equals FALSE.
3316
     * empty() does not generate a warning if the variable does not exist.
3317
     *
3318
     * @param mixed $str
3319
     *
3320
     * @return bool whether or not $str is empty()
3321
     */
3322
    public static function is_empty($str): bool
3323
    {
3324
        return empty($str);
3325
    }
3326
3327
    /**
3328
     * Returns true if the string contains only hexadecimal chars, false otherwise.
3329
     *
3330
     * @param string $str
3331
     *
3332
     * @return bool
3333
     *              Whether or not $str contains only hexadecimal chars
3334
     */
3335 13
    public static function is_hexadecimal(string $str): bool
3336
    {
3337 13
        if (self::$SUPPORT['mbstring'] === true) {
3338
            /** @noinspection PhpComposerExtensionStubsInspection */
3339 13
            return \mb_ereg_match('^[[:xdigit:]]*$', $str);
3340
        }
3341
3342
        return self::str_matches_pattern($str, '^[[:xdigit:]]*$');
3343
    }
3344
3345
    /**
3346
     * Check if the string contains any html-tags <lall>.
3347
     *
3348
     * @param string $str <p>The input string.</p>
3349
     *
3350
     * @return bool
3351
     */
3352 3
    public static function is_html(string $str): bool
3353
    {
3354 3
        if ($str === '') {
3355 3
            return false;
3356
        }
3357
3358
        // init
3359 3
        $matches = [];
3360
3361 3
        \preg_match("/<\/?\w+(?:(?:\s+\w+(?:\s*=\s*(?:\".*?\"|'.*?'|[^'\">\s]+))?)*+\s*|\s*)\/?>/u", $str, $matches);
3362
3363 3
        return \count($matches) !== 0;
3364
    }
3365
3366
    /**
3367
     * Try to check if "$str" is an json-string.
3368
     *
3369
     * @param string $str                              <p>The input string.</p>
3370
     * @param bool   $onlyArrayOrObjectResultsAreValid [optional] <p>Only array and objects are valid json results.</p>
3371
     *
3372
     * @return bool
3373
     */
3374 42
    public static function is_json(string $str, $onlyArrayOrObjectResultsAreValid = true): bool
3375
    {
3376 42
        if ($str === '') {
3377 4
            return false;
3378
        }
3379
3380 40
        if (self::$SUPPORT['json'] === false) {
3381
            throw new \RuntimeException('ext-json: is not installed');
3382
        }
3383
3384 40
        $json = self::json_decode($str);
3385 40
        if ($json === null && \strtoupper($str) !== 'NULL') {
3386 18
            return false;
3387
        }
3388
3389
        if (
3390 24
            $onlyArrayOrObjectResultsAreValid === true
3391
            &&
3392 24
            \is_object($json) === false
3393
            &&
3394 24
            \is_array($json) === false
3395
        ) {
3396 5
            return false;
3397
        }
3398
3399
        /** @noinspection PhpComposerExtensionStubsInspection */
3400 19
        return \json_last_error() === \JSON_ERROR_NONE;
3401
    }
3402
3403
    /**
3404
     * @param string $str
3405
     *
3406
     * @return bool
3407
     */
3408 8
    public static function is_lowercase(string $str): bool
3409
    {
3410 8
        if (self::$SUPPORT['mbstring'] === true) {
3411
            /** @noinspection PhpComposerExtensionStubsInspection */
3412 8
            return \mb_ereg_match('^[[:lower:]]*$', $str);
3413
        }
3414
3415
        return self::str_matches_pattern($str, '^[[:lower:]]*$');
3416
    }
3417
3418
    /**
3419
     * Returns true if the string is serialized, false otherwise.
3420
     *
3421
     * @param string $str
3422
     *
3423
     * @return bool whether or not $str is serialized
3424
     */
3425 7
    public static function is_serialized(string $str): bool
3426
    {
3427 7
        if ($str === '') {
3428 1
            return false;
3429
        }
3430
3431
        /** @noinspection PhpUsageOfSilenceOperatorInspection */
3432
        /** @noinspection UnserializeExploitsInspection */
3433 6
        return $str === 'b:0;'
3434
               ||
3435 6
               @\unserialize($str) !== false;
3436
    }
3437
3438
    /**
3439
     * Returns true if the string contains only lower case chars, false
3440
     * otherwise.
3441
     *
3442
     * @param string $str <p>The input string.</p>
3443
     *
3444
     * @return bool
3445
     *              Whether or not $str contains only lower case characters
3446
     */
3447 8
    public static function is_uppercase(string $str): bool
3448
    {
3449 8
        if (self::$SUPPORT['mbstring'] === true) {
3450
            /** @noinspection PhpComposerExtensionStubsInspection */
3451 8
            return \mb_ereg_match('^[[:upper:]]*$', $str);
3452
        }
3453
3454
        return self::str_matches_pattern($str, '^[[:upper:]]*$');
3455
    }
3456
3457
    /**
3458
     * Check if the string is UTF-16.
3459
     *
3460
     * @param mixed $str                   <p>The input string.</p>
3461
     * @param bool  $checkIfStringIsBinary
3462
     *
3463
     * @return false|int
3464
     *                   <strong>false</strong> if is't not UTF-16,<br>
3465
     *                   <strong>1</strong> for UTF-16LE,<br>
3466
     *                   <strong>2</strong> for UTF-16BE
3467
     */
3468 22
    public static function is_utf16($str, $checkIfStringIsBinary = true)
3469
    {
3470
        // init
3471 22
        $str = (string) $str;
3472 22
        $strChars = [];
3473
3474
        if (
3475 22
            $checkIfStringIsBinary === true
3476
            &&
3477 22
            self::is_binary($str, true) === false
3478
        ) {
3479 2
            return false;
3480
        }
3481
3482 22
        if (self::$SUPPORT['mbstring'] === false) {
3483 3
            \trigger_error('UTF8::is_utf16() without mbstring may did not work correctly', \E_USER_WARNING);
3484
        }
3485
3486 22
        $str = self::remove_bom($str);
3487
3488 22
        $maybeUTF16LE = 0;
3489 22
        $test = \mb_convert_encoding($str, 'UTF-8', 'UTF-16LE');
3490 22
        if ($test) {
3491 15
            $test2 = \mb_convert_encoding($test, 'UTF-16LE', 'UTF-8');
3492 15
            $test3 = \mb_convert_encoding($test2, 'UTF-8', 'UTF-16LE');
3493 15
            if ($test3 === $test) {
3494 15
                if (\count($strChars) === 0) {
3495 15
                    $strChars = self::count_chars($str, true, false);
3496
                }
3497 15
                foreach (self::count_chars($test3) as $test3char => &$test3charEmpty) {
0 ignored issues
show
Bug introduced by
The expression self::count_chars($test3) cannot be used as a reference.

Let?s assume that you have the following foreach statement:

foreach ($array as &$itemValue) { }

$itemValue is assigned by reference. This is possible because the expression (in the example $array) can be used as a reference target.

However, if we were to replace $array with something different like the result of a function call as in

foreach (getArray() as &$itemValue) { }

then assigning by reference is not possible anymore as there is no target that could be modified.

Available Fixes

1. Do not assign by reference
foreach (getArray() as $itemValue) { }
2. Assign to a local variable first
$array = getArray();
foreach ($array as &$itemValue) {}
3. Return a reference
function &getArray() { $array = array(); return $array; }

foreach (getArray() as &$itemValue) { }
Loading history...
3498 15
                    if (\in_array($test3char, $strChars, true) === true) {
3499 15
                        ++$maybeUTF16LE;
3500
                    }
3501
                }
3502 15
                unset($test3charEmpty);
3503
            }
3504
        }
3505
3506 22
        $maybeUTF16BE = 0;
3507 22
        $test = \mb_convert_encoding($str, 'UTF-8', 'UTF-16BE');
3508 22
        if ($test) {
3509 15
            $test2 = \mb_convert_encoding($test, 'UTF-16BE', 'UTF-8');
3510 15
            $test3 = \mb_convert_encoding($test2, 'UTF-8', 'UTF-16BE');
3511 15
            if ($test3 === $test) {
3512 15
                if (\count($strChars) === 0) {
3513 7
                    $strChars = self::count_chars($str, true, false);
3514
                }
3515 15
                foreach (self::count_chars($test3) as $test3char => &$test3charEmpty) {
0 ignored issues
show
Bug introduced by
The expression self::count_chars($test3) cannot be used as a reference.

Let?s assume that you have the following foreach statement:

foreach ($array as &$itemValue) { }

$itemValue is assigned by reference. This is possible because the expression (in the example $array) can be used as a reference target.

However, if we were to replace $array with something different like the result of a function call as in

foreach (getArray() as &$itemValue) { }

then assigning by reference is not possible anymore as there is no target that could be modified.

Available Fixes

1. Do not assign by reference
foreach (getArray() as $itemValue) { }
2. Assign to a local variable first
$array = getArray();
foreach ($array as &$itemValue) {}
3. Return a reference
function &getArray() { $array = array(); return $array; }

foreach (getArray() as &$itemValue) { }
Loading history...
3516 15
                    if (\in_array($test3char, $strChars, true) === true) {
3517 15
                        ++$maybeUTF16BE;
3518
                    }
3519
                }
3520 15
                unset($test3charEmpty);
3521
            }
3522
        }
3523
3524 22
        if ($maybeUTF16BE !== $maybeUTF16LE) {
3525 6
            if ($maybeUTF16LE > $maybeUTF16BE) {
3526 4
                return 1;
3527
            }
3528
3529 6
            return 2;
3530
        }
3531
3532 18
        return false;
3533
    }
3534
3535
    /**
3536
     * Check if the string is UTF-32.
3537
     *
3538
     * @param mixed $str                   <p>The input string.</p>
3539
     * @param bool  $checkIfStringIsBinary
3540
     *
3541
     * @return false|int
3542
     *                   <strong>false</strong> if is't not UTF-32,<br>
3543
     *                   <strong>1</strong> for UTF-32LE,<br>
3544
     *                   <strong>2</strong> for UTF-32BE
3545
     */
3546 18
    public static function is_utf32($str, $checkIfStringIsBinary = true)
3547
    {
3548
        // init
3549 18
        $str = (string) $str;
3550 18
        $strChars = [];
3551
3552
        if (
3553 18
            $checkIfStringIsBinary === true
3554
            &&
3555 18
            self::is_binary($str, true) === false
3556
        ) {
3557 2
            return false;
3558
        }
3559
3560 18
        if (self::$SUPPORT['mbstring'] === false) {
3561 3
            \trigger_error('UTF8::is_utf32() without mbstring may did not work correctly', \E_USER_WARNING);
3562
        }
3563
3564 18
        $str = self::remove_bom($str);
3565
3566 18
        $maybeUTF32LE = 0;
3567 18
        $test = \mb_convert_encoding($str, 'UTF-8', 'UTF-32LE');
3568 18
        if ($test) {
3569 11
            $test2 = \mb_convert_encoding($test, 'UTF-32LE', 'UTF-8');
3570 11
            $test3 = \mb_convert_encoding($test2, 'UTF-8', 'UTF-32LE');
3571 11
            if ($test3 === $test) {
3572 11
                if (\count($strChars) === 0) {
3573 11
                    $strChars = self::count_chars($str, true, false);
3574
                }
3575 11
                foreach (self::count_chars($test3) as $test3char => &$test3charEmpty) {
0 ignored issues
show
Bug introduced by
The expression self::count_chars($test3) cannot be used as a reference.

Let?s assume that you have the following foreach statement:

foreach ($array as &$itemValue) { }

$itemValue is assigned by reference. This is possible because the expression (in the example $array) can be used as a reference target.

However, if we were to replace $array with something different like the result of a function call as in

foreach (getArray() as &$itemValue) { }

then assigning by reference is not possible anymore as there is no target that could be modified.

Available Fixes

1. Do not assign by reference
foreach (getArray() as $itemValue) { }
2. Assign to a local variable first
$array = getArray();
foreach ($array as &$itemValue) {}
3. Return a reference
function &getArray() { $array = array(); return $array; }

foreach (getArray() as &$itemValue) { }
Loading history...
3576 11
                    if (\in_array($test3char, $strChars, true) === true) {
3577 11
                        ++$maybeUTF32LE;
3578
                    }
3579
                }
3580 11
                unset($test3charEmpty);
3581
            }
3582
        }
3583
3584 18
        $maybeUTF32BE = 0;
3585 18
        $test = \mb_convert_encoding($str, 'UTF-8', 'UTF-32BE');
3586 18
        if ($test) {
3587 11
            $test2 = \mb_convert_encoding($test, 'UTF-32BE', 'UTF-8');
3588 11
            $test3 = \mb_convert_encoding($test2, 'UTF-8', 'UTF-32BE');
3589 11
            if ($test3 === $test) {
3590 11
                if (\count($strChars) === 0) {
3591 7
                    $strChars = self::count_chars($str, true, false);
3592
                }
3593 11
                foreach (self::count_chars($test3) as $test3char => &$test3charEmpty) {
0 ignored issues
show
Bug introduced by
The expression self::count_chars($test3) cannot be used as a reference.

Let?s assume that you have the following foreach statement:

foreach ($array as &$itemValue) { }

$itemValue is assigned by reference. This is possible because the expression (in the example $array) can be used as a reference target.

However, if we were to replace $array with something different like the result of a function call as in

foreach (getArray() as &$itemValue) { }

then assigning by reference is not possible anymore as there is no target that could be modified.

Available Fixes

1. Do not assign by reference
foreach (getArray() as $itemValue) { }
2. Assign to a local variable first
$array = getArray();
foreach ($array as &$itemValue) {}
3. Return a reference
function &getArray() { $array = array(); return $array; }

foreach (getArray() as &$itemValue) { }
Loading history...
3594 11
                    if (\in_array($test3char, $strChars, true) === true) {
3595 11
                        ++$maybeUTF32BE;
3596
                    }
3597
                }
3598 11
                unset($test3charEmpty);
3599
            }
3600
        }
3601
3602 18
        if ($maybeUTF32BE !== $maybeUTF32LE) {
3603 2
            if ($maybeUTF32LE > $maybeUTF32BE) {
3604 2
                return 1;
3605
            }
3606
3607 2
            return 2;
3608
        }
3609
3610 18
        return false;
3611
    }
3612
3613
    /**
3614
     * Checks whether the passed string contains only byte sequences that appear valid UTF-8 characters.
3615
     *
3616
     * @see http://hsivonen.iki.fi/php-utf8/
3617
     *
3618
     * @param string|string[] $str    <p>The string to be checked.</p>
3619
     * @param bool            $strict <p>Check also if the string is not UTF-16 or UTF-32.</p>
3620
     *
3621
     * @return bool
3622
     */
3623 106
    public static function is_utf8($str, bool $strict = false): bool
3624
    {
3625 106
        if (\is_array($str) === true) {
3626 2
            foreach ($str as &$v) {
3627 2
                if (self::is_utf8($v, $strict) === false) {
3628 2
                    return false;
3629
                }
3630
            }
3631
3632
            return true;
3633
        }
3634
3635 106
        if ($str === '') {
3636 12
            return true;
3637
        }
3638
3639 102
        if ($strict === true) {
3640 2
            $isBinary = self::is_binary($str, true);
3641
3642 2
            if ($isBinary && self::is_utf16($str, false) !== false) {
3643 2
                return false;
3644
            }
3645
3646
            if ($isBinary && self::is_utf32($str, false) !== false) {
3647
                return false;
3648
            }
3649
        }
3650
3651 102
        if (self::pcre_utf8_support() !== true) {
3652
3653
            // If even just the first character can be matched, when the /u
3654
            // modifier is used, then it's valid UTF-8. If the UTF-8 is somehow
3655
            // invalid, nothing at all will match, even if the string contains
3656
            // some valid sequences
3657
            return \preg_match('/^.{1}/us', $str, $ar) === 1;
3658
        }
3659
3660 102
        $mState = 0; // cached expected number of octets after the current octet
3661
        // until the beginning of the next UTF8 character sequence
3662 102
        $mUcs4 = 0; // cached Unicode character
3663 102
        $mBytes = 1; // cached expected number of octets in the current sequence
3664
3665 102
        if (self::$ORD === null) {
3666
            self::$ORD = self::getData('ord');
3667
        }
3668
3669 102
        $len = \strlen((string) $str);
3670
        /** @noinspection ForeachInvariantsInspection */
3671 102
        for ($i = 0; $i < $len; ++$i) {
3672 102
            $in = self::$ORD[$str[$i]];
3673 102
            if ($mState === 0) {
3674
                // When mState is zero we expect either a US-ASCII character or a
3675
                // multi-octet sequence.
3676 102
                if ((0x80 & $in) === 0) {
3677
                    // US-ASCII, pass straight through.
3678 97
                    $mBytes = 1;
3679 83
                } elseif ((0xE0 & $in) === 0xC0) {
3680
                    // First octet of 2 octet sequence.
3681 73
                    $mUcs4 = $in;
3682 73
                    $mUcs4 = ($mUcs4 & 0x1F) << 6;
3683 73
                    $mState = 1;
3684 73
                    $mBytes = 2;
3685 58
                } elseif ((0xF0 & $in) === 0xE0) {
3686
                    // First octet of 3 octet sequence.
3687 42
                    $mUcs4 = $in;
3688 42
                    $mUcs4 = ($mUcs4 & 0x0F) << 12;
3689 42
                    $mState = 2;
3690 42
                    $mBytes = 3;
3691 29
                } elseif ((0xF8 & $in) === 0xF0) {
3692
                    // First octet of 4 octet sequence.
3693 18
                    $mUcs4 = $in;
3694 18
                    $mUcs4 = ($mUcs4 & 0x07) << 18;
3695 18
                    $mState = 3;
3696 18
                    $mBytes = 4;
3697 13
                } elseif ((0xFC & $in) === 0xF8) {
3698
                    /* First octet of 5 octet sequence.
3699
                     *
3700
                     * This is illegal because the encoded codepoint must be either
3701
                     * (a) not the shortest form or
3702
                     * (b) outside the Unicode range of 0-0x10FFFF.
3703
                     * Rather than trying to resynchronize, we will carry on until the end
3704
                     * of the sequence and let the later error handling code catch it.
3705
                     */
3706 5
                    $mUcs4 = $in;
3707 5
                    $mUcs4 = ($mUcs4 & 0x03) << 24;
3708 5
                    $mState = 4;
3709 5
                    $mBytes = 5;
3710 10
                } elseif ((0xFE & $in) === 0xFC) {
3711
                    // First octet of 6 octet sequence, see comments for 5 octet sequence.
3712 5
                    $mUcs4 = $in;
3713 5
                    $mUcs4 = ($mUcs4 & 1) << 30;
3714 5
                    $mState = 5;
3715 5
                    $mBytes = 6;
3716
                } else {
3717
                    // Current octet is neither in the US-ASCII range nor a legal first
3718
                    // octet of a multi-octet sequence.
3719 102
                    return false;
3720
                }
3721 83
            } elseif ((0xC0 & $in) === 0x80) {
3722
3723
                // When mState is non-zero, we expect a continuation of the multi-octet
3724
                // sequence
3725
3726
                // Legal continuation.
3727 75
                $shift = ($mState - 1) * 6;
3728 75
                $tmp = $in;
3729 75
                $tmp = ($tmp & 0x0000003F) << $shift;
3730 75
                $mUcs4 |= $tmp;
3731
                // Prefix: End of the multi-octet sequence. mUcs4 now contains the final
3732
                // Unicode code point to be output.
3733 75
                if (--$mState === 0) {
3734
                    // Check for illegal sequences and code points.
3735
                    //
3736
                    // From Unicode 3.1, non-shortest form is illegal
3737
                    if (
3738 75
                        ($mBytes === 2 && $mUcs4 < 0x0080)
3739
                        ||
3740 75
                        ($mBytes === 3 && $mUcs4 < 0x0800)
3741
                        ||
3742 75
                        ($mBytes === 4 && $mUcs4 < 0x10000)
3743
                        ||
3744 75
                        ($mBytes > 4)
3745
                        ||
3746
                        // From Unicode 3.2, surrogate characters are illegal.
3747 75
                        (($mUcs4 & 0xFFFFF800) === 0xD800)
3748
                        ||
3749
                        // Code points outside the Unicode range are illegal.
3750 75
                        ($mUcs4 > 0x10FFFF)
3751
                    ) {
3752 8
                        return false;
3753
                    }
3754
                    // initialize UTF8 cache
3755 75
                    $mState = 0;
3756 75
                    $mUcs4 = 0;
3757 75
                    $mBytes = 1;
3758
                }
3759
            } else {
3760
                // ((0xC0 & (*in) != 0x80) && (mState != 0))
3761
                // Incomplete multi-octet sequence.
3762 35
                return false;
3763
            }
3764
        }
3765
3766 67
        return true;
3767
    }
3768
3769
    /**
3770
     * (PHP 5 &gt;= 5.2.0, PECL json &gt;= 1.2.0)<br/>
3771
     * Decodes a JSON string
3772
     *
3773
     * @see http://php.net/manual/en/function.json-decode.php
3774
     *
3775
     * @param string $json    <p>
3776
     *                        The <i>json</i> string being decoded.
3777
     *                        </p>
3778
     *                        <p>
3779
     *                        This function only works with UTF-8 encoded strings.
3780
     *                        </p>
3781
     *                        <p>PHP implements a superset of
3782
     *                        JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard
3783
     *                        only supports these values when they are nested inside an array or an object.
3784
     *                        </p>
3785
     * @param bool   $assoc   [optional] <p>
3786
     *                        When <b>TRUE</b>, returned objects will be converted into
3787
     *                        associative arrays.
3788
     *                        </p>
3789
     * @param int    $depth   [optional] <p>
3790
     *                        User specified recursion depth.
3791
     *                        </p>
3792
     * @param int    $options [optional] <p>
3793
     *                        Bitmask of JSON decode options. Currently only
3794
     *                        <b>JSON_BIGINT_AS_STRING</b>
3795
     *                        is supported (default is to cast large integers as floats)
3796
     *                        </p>
3797
     *
3798
     * @return mixed
3799
     *               The value encoded in <i>json</i> in appropriate PHP type. Values true, false and
3800
     *               null (case-insensitive) are returned as <b>TRUE</b>, <b>FALSE</b> and <b>NULL</b> respectively.
3801
     *               <b>NULL</b> is returned if the <i>json</i> cannot be decoded or if the encoded data
3802
     *               is deeper than the recursion limit.
3803
     */
3804 43
    public static function json_decode(
3805
        string $json,
3806
        bool $assoc = false,
3807
        int $depth = 512,
3808
        int $options = 0
3809
    ) {
3810 43
        $json = self::filter($json);
3811
3812 43
        if (self::$SUPPORT['json'] === false) {
3813
            throw new \RuntimeException('ext-json: is not installed');
3814
        }
3815
3816
        /** @noinspection PhpComposerExtensionStubsInspection */
3817 43
        return \json_decode($json, $assoc, $depth, $options);
3818
    }
3819
3820
    /**
3821
     * (PHP 5 &gt;= 5.2.0, PECL json &gt;= 1.2.0)<br/>
3822
     * Returns the JSON representation of a value.
3823
     *
3824
     * @see http://php.net/manual/en/function.json-encode.php
3825
     *
3826
     * @param mixed $value   <p>
3827
     *                       The <i>value</i> being encoded. Can be any type except
3828
     *                       a resource.
3829
     *                       </p>
3830
     *                       <p>
3831
     *                       All string data must be UTF-8 encoded.
3832
     *                       </p>
3833
     *                       <p>PHP implements a superset of
3834
     *                       JSON - it will also encode and decode scalar types and <b>NULL</b>. The JSON standard
3835
     *                       only supports these values when they are nested inside an array or an object.
3836
     *                       </p>
3837
     * @param int   $options [optional] <p>
3838
     *                       Bitmask consisting of <b>JSON_HEX_QUOT</b>,
3839
     *                       <b>JSON_HEX_TAG</b>,
3840
     *                       <b>JSON_HEX_AMP</b>,
3841
     *                       <b>JSON_HEX_APOS</b>,
3842
     *                       <b>JSON_NUMERIC_CHECK</b>,
3843
     *                       <b>JSON_PRETTY_PRINT</b>,
3844
     *                       <b>JSON_UNESCAPED_SLASHES</b>,
3845
     *                       <b>JSON_FORCE_OBJECT</b>,
3846
     *                       <b>JSON_UNESCAPED_UNICODE</b>. The behaviour of these
3847
     *                       constants is described on
3848
     *                       the JSON constants page.
3849
     *                       </p>
3850
     * @param int   $depth   [optional] <p>
3851
     *                       Set the maximum depth. Must be greater than zero.
3852
     *                       </p>
3853
     *
3854
     * @return false|string
3855
     *                      A JSON encoded <strong>string</strong> on success or<br>
3856
     *                      <strong>FALSE</strong> on failure
3857
     */
3858 5
    public static function json_encode($value, int $options = 0, int $depth = 512)
3859
    {
3860 5
        $value = self::filter($value);
3861
3862 5
        if (self::$SUPPORT['json'] === false) {
3863
            throw new \RuntimeException('ext-json: is not installed');
3864
        }
3865
3866
        /** @noinspection PhpComposerExtensionStubsInspection */
3867 5
        return \json_encode($value, $options, $depth);
3868
    }
3869
3870
    /**
3871
     * Checks whether JSON is available on the server.
3872
     *
3873
     * @return bool
3874
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
3875
     */
3876
    public static function json_loaded(): bool
3877
    {
3878
        return \function_exists('json_decode');
3879
    }
3880
3881
    /**
3882
     * Makes string's first char lowercase.
3883
     *
3884
     * @param string      $str                   <p>The input string</p>
3885
     * @param string      $encoding              [optional] <p>Set the charset for e.g. "mb_" function</p>
3886
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
3887
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
3888
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
3889
     *
3890
     * @return string the resulting string
3891
     */
3892 46
    public static function lcfirst(
3893
        string $str,
3894
        string $encoding = 'UTF-8',
3895
        bool $cleanUtf8 = false,
3896
        string $lang = null,
3897
        bool $tryToKeepStringLength = false
3898
    ): string {
3899 46
        if ($cleanUtf8 === true) {
3900
            $str = self::clean($str);
3901
        }
3902
3903 46
        $useMbFunction = $lang === null && $tryToKeepStringLength === false;
3904
3905 46
        if ($encoding === 'UTF-8') {
3906 43
            $strPartTwo = (string) \mb_substr($str, 1);
3907
3908 43
            if ($useMbFunction === true) {
3909 43
                $strPartOne = \mb_strtolower(
3910 43
                    (string) \mb_substr($str, 0, 1)
3911
                );
3912
            } else {
3913
                $strPartOne = self::strtolower(
3914
                    (string) \mb_substr($str, 0, 1),
3915
                    $encoding,
3916
                    false,
3917
                    $lang,
3918 43
                    $tryToKeepStringLength
3919
                );
3920
            }
3921
        } else {
3922 3
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
3923
3924 3
            $strPartTwo = (string) self::substr($str, 1, null, $encoding);
3925
3926 3
            $strPartOne = self::strtolower(
3927 3
                (string) self::substr($str, 0, 1, $encoding),
3928 3
                $encoding,
3929 3
                false,
3930 3
                $lang,
3931 3
                $tryToKeepStringLength
3932
            );
3933
        }
3934
3935 46
        return $strPartOne . $strPartTwo;
3936
    }
3937
3938
    /**
3939
     * alias for "UTF8::lcfirst()"
3940
     *
3941
     * @param string      $str
3942
     * @param string      $encoding
3943
     * @param bool        $cleanUtf8
3944
     * @param string|null $lang
3945
     * @param bool        $tryToKeepStringLength
3946
     *
3947
     * @return string
3948
     *
3949
     * @see UTF8::lcfirst()
3950
     */
3951 2
    public static function lcword(
3952
        string $str,
3953
        string $encoding = 'UTF-8',
3954
        bool $cleanUtf8 = false,
3955
        string $lang = null,
3956
        bool $tryToKeepStringLength = false
3957
    ): string {
3958 2
        return self::lcfirst($str, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
3959
    }
3960
3961
    /**
3962
     * Lowercase for all words in the string.
3963
     *
3964
     * @param string      $str                   <p>The input string.</p>
3965
     * @param string[]    $exceptions            [optional] <p>Exclusion for some words.</p>
3966
     * @param string      $charlist              [optional] <p>Additional chars that contains to words and do not start
3967
     *                                           a new word.</p>
3968
     * @param string      $encoding              [optional] <p>Set the charset.</p>
3969
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
3970
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
3971
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
3972
     *
3973
     * @return string
3974
     */
3975 2
    public static function lcwords(
3976
        string $str,
3977
        array $exceptions = [],
3978
        string $charlist = '',
3979
        string $encoding = 'UTF-8',
3980
        bool $cleanUtf8 = false,
3981
        string $lang = null,
3982
        bool $tryToKeepStringLength = false
3983
    ): string {
3984 2
        if (!$str) {
3985 2
            return '';
3986
        }
3987
3988 2
        $words = self::str_to_words($str, $charlist);
3989 2
        $useExceptions = \count($exceptions) > 0;
3990
3991 2
        foreach ($words as &$word) {
3992 2
            if (!$word) {
3993 2
                continue;
3994
            }
3995
3996
            if (
3997 2
                $useExceptions === false
3998
                ||
3999 2
                !\in_array($word, $exceptions, true)
4000
            ) {
4001 2
                $word = self::lcfirst($word, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
4002
            }
4003
        }
4004
4005 2
        return \implode('', $words);
4006
    }
4007
4008
    /**
4009
     * alias for "UTF8::lcfirst()"
4010
     *
4011
     * @param string      $str
4012
     * @param string      $encoding
4013
     * @param bool        $cleanUtf8
4014
     * @param string|null $lang
4015
     * @param bool        $tryToKeepStringLength
4016
     *
4017
     * @return string
4018
     *
4019
     * @see UTF8::lcfirst()
4020
     */
4021 5
    public static function lowerCaseFirst(
4022
        string $str,
4023
        string $encoding = 'UTF-8',
4024
        bool $cleanUtf8 = false,
4025
        string $lang = null,
4026
        bool $tryToKeepStringLength = false
4027
    ): string {
4028 5
        return self::lcfirst($str, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
4029
    }
4030
4031
    /**
4032
     * Strip whitespace or other characters from beginning of a UTF-8 string.
4033
     *
4034
     * @param string      $str   <p>The string to be trimmed</p>
4035
     * @param string|null $chars <p>Optional characters to be stripped</p>
4036
     *
4037
     * @return string the string with unwanted characters stripped from the left
4038
     */
4039 22
    public static function ltrim(string $str = '', string $chars = null): string
4040
    {
4041 22
        if ($str === '') {
4042 3
            return '';
4043
        }
4044
4045 21
        if ($chars) {
4046 10
            $chars = \preg_quote($chars, '/');
4047 10
            $pattern = "^[${chars}]+";
4048
        } else {
4049 14
            $pattern = "^[\s]+";
4050
        }
4051
4052 21
        if (self::$SUPPORT['mbstring'] === true) {
4053
            /** @noinspection PhpComposerExtensionStubsInspection */
4054 21
            return (string) \mb_ereg_replace($pattern, '', $str);
4055
        }
4056
4057
        return self::regex_replace($str, $pattern, '', '', '/');
4058
    }
4059
4060
    /**
4061
     * Returns the UTF-8 character with the maximum code point in the given data.
4062
     *
4063
     * @param array<string>|string $arg <p>A UTF-8 encoded string or an array of such strings.</p>
4064
     *
4065
     * @return string|null the character with the highest code point than others, returns null on failure or empty input
4066
     */
4067 2
    public static function max($arg)
4068
    {
4069 2
        if (\is_array($arg) === true) {
4070 2
            $arg = \implode('', $arg);
4071
        }
4072
4073 2
        $codepoints = self::codepoints($arg, false);
4074 2
        if (\count($codepoints) === 0) {
4075 2
            return null;
4076
        }
4077
4078 2
        $codepoint_max = \max($codepoints);
4079
4080 2
        return self::chr($codepoint_max);
4081
    }
4082
4083
    /**
4084
     * Calculates and returns the maximum number of bytes taken by any
4085
     * UTF-8 encoded character in the given string.
4086
     *
4087
     * @param string $str <p>The original Unicode string.</p>
4088
     *
4089
     * @return int max byte lengths of the given chars
4090
     */
4091 2
    public static function max_chr_width(string $str): int
4092
    {
4093 2
        $bytes = self::chr_size_list($str);
4094 2
        if (\count($bytes) > 0) {
4095 2
            return (int) \max($bytes);
4096
        }
4097
4098 2
        return 0;
4099
    }
4100
4101
    /**
4102
     * Checks whether mbstring is available on the server.
4103
     *
4104
     * @return bool
4105
     *              <strong>true</strong> if available, <strong>false</strong> otherwise
4106
     */
4107 27
    public static function mbstring_loaded(): bool
4108
    {
4109 27
        return \extension_loaded('mbstring');
4110
    }
4111
4112
    /**
4113
     * Returns the UTF-8 character with the minimum code point in the given data.
4114
     *
4115
     * @param mixed $arg <strong>A UTF-8 encoded string or an array of such strings.</strong>
4116
     *
4117
     * @return string|null the character with the lowest code point than others, returns null on failure or empty input
4118
     */
4119 2
    public static function min($arg)
4120
    {
4121 2
        if (\is_array($arg) === true) {
4122 2
            $arg = \implode('', $arg);
4123
        }
4124
4125 2
        $codepoints = self::codepoints($arg, false);
4126 2
        if (\count($codepoints) === 0) {
4127 2
            return null;
4128
        }
4129
4130 2
        $codepoint_min = \min($codepoints);
4131
4132 2
        return self::chr($codepoint_min);
4133
    }
4134
4135
    /**
4136
     * alias for "UTF8::normalize_encoding()"
4137
     *
4138
     * @param mixed $encoding
4139
     * @param mixed $fallback
4140
     *
4141
     * @return mixed
4142
     *
4143
     * @see UTF8::normalize_encoding()
4144
     * @deprecated <p>use "UTF8::normalize_encoding()"</p>
4145
     */
4146 2
    public static function normalizeEncoding($encoding, $fallback = '')
4147
    {
4148 2
        return self::normalize_encoding($encoding, $fallback);
4149
    }
4150
4151
    /**
4152
     * Normalize the encoding-"name" input.
4153
     *
4154
     * @param mixed $encoding <p>e.g.: ISO, UTF8, WINDOWS-1251 etc.</p>
4155
     * @param mixed $fallback <p>e.g.: UTF-8</p>
4156
     *
4157
     * @return mixed e.g.: ISO-8859-1, UTF-8, WINDOWS-1251 etc.<br>Will return a empty string as fallback (by default)
4158
     */
4159 323
    public static function normalize_encoding($encoding, $fallback = '')
4160
    {
4161 323
        static $STATIC_NORMALIZE_ENCODING_CACHE = [];
4162
4163
        // init
4164 323
        $encoding = (string) $encoding;
4165
4166 323
        if (!$encoding) {
4167 278
            return $fallback;
4168
        }
4169
4170
        if (
4171 50
            $encoding === 'UTF-8'
4172
            ||
4173 50
            $encoding === 'UTF8'
4174
        ) {
4175 24
            return 'UTF-8';
4176
        }
4177
4178
        if (
4179 43
            $encoding === '8BIT'
4180
            ||
4181 43
            $encoding === 'BINARY'
4182
        ) {
4183
            return 'CP850';
4184
        }
4185
4186
        if (
4187 43
            $encoding === 'HTML'
4188
            ||
4189 43
            $encoding === 'HTML-ENTITIES'
4190
        ) {
4191 2
            return 'HTML-ENTITIES';
4192
        }
4193
4194
        if (
4195 43
            $encoding === '1' // only a fallback, for non "strict_types" usage ...
4196
            ||
4197 43
            $encoding === '0' // only a fallback, for non "strict_types" usage ...
4198
        ) {
4199 1
            return $fallback;
4200
        }
4201
4202 42
        if (isset($STATIC_NORMALIZE_ENCODING_CACHE[$encoding])) {
4203 40
            return $STATIC_NORMALIZE_ENCODING_CACHE[$encoding];
4204
        }
4205
4206 6
        if (self::$ENCODINGS === null) {
4207 1
            self::$ENCODINGS = self::getData('encodings');
4208
        }
4209
4210 6
        if (\in_array($encoding, self::$ENCODINGS, true)) {
4211 4
            $STATIC_NORMALIZE_ENCODING_CACHE[$encoding] = $encoding;
4212
4213 4
            return $encoding;
4214
        }
4215
4216 5
        $encodingOrig = $encoding;
4217 5
        $encoding = \strtoupper($encoding);
4218 5
        $encodingUpperHelper = (string) \preg_replace('/[^a-zA-Z0-9\s]/u', '', $encoding);
4219
4220
        $equivalences = [
4221 5
            'ISO8859'     => 'ISO-8859-1',
4222
            'ISO88591'    => 'ISO-8859-1',
4223
            'ISO'         => 'ISO-8859-1',
4224
            'LATIN'       => 'ISO-8859-1',
4225
            'LATIN1'      => 'ISO-8859-1', // Western European
4226
            'ISO88592'    => 'ISO-8859-2',
4227
            'LATIN2'      => 'ISO-8859-2', // Central European
4228
            'ISO88593'    => 'ISO-8859-3',
4229
            'LATIN3'      => 'ISO-8859-3', // Southern European
4230
            'ISO88594'    => 'ISO-8859-4',
4231
            'LATIN4'      => 'ISO-8859-4', // Northern European
4232
            'ISO88595'    => 'ISO-8859-5',
4233
            'ISO88596'    => 'ISO-8859-6', // Greek
4234
            'ISO88597'    => 'ISO-8859-7',
4235
            'ISO88598'    => 'ISO-8859-8', // Hebrew
4236
            'ISO88599'    => 'ISO-8859-9',
4237
            'LATIN5'      => 'ISO-8859-9', // Turkish
4238
            'ISO885911'   => 'ISO-8859-11',
4239
            'TIS620'      => 'ISO-8859-11', // Thai
4240
            'ISO885910'   => 'ISO-8859-10',
4241
            'LATIN6'      => 'ISO-8859-10', // Nordic
4242
            'ISO885913'   => 'ISO-8859-13',
4243
            'LATIN7'      => 'ISO-8859-13', // Baltic
4244
            'ISO885914'   => 'ISO-8859-14',
4245
            'LATIN8'      => 'ISO-8859-14', // Celtic
4246
            'ISO885915'   => 'ISO-8859-15',
4247
            'LATIN9'      => 'ISO-8859-15', // Western European (with some extra chars e.g. €)
4248
            'ISO885916'   => 'ISO-8859-16',
4249
            'LATIN10'     => 'ISO-8859-16', // Southeast European
4250
            'CP1250'      => 'WINDOWS-1250',
4251
            'WIN1250'     => 'WINDOWS-1250',
4252
            'WINDOWS1250' => 'WINDOWS-1250',
4253
            'CP1251'      => 'WINDOWS-1251',
4254
            'WIN1251'     => 'WINDOWS-1251',
4255
            'WINDOWS1251' => 'WINDOWS-1251',
4256
            'CP1252'      => 'WINDOWS-1252',
4257
            'WIN1252'     => 'WINDOWS-1252',
4258
            'WINDOWS1252' => 'WINDOWS-1252',
4259
            'CP1253'      => 'WINDOWS-1253',
4260
            'WIN1253'     => 'WINDOWS-1253',
4261
            'WINDOWS1253' => 'WINDOWS-1253',
4262
            'CP1254'      => 'WINDOWS-1254',
4263
            'WIN1254'     => 'WINDOWS-1254',
4264
            'WINDOWS1254' => 'WINDOWS-1254',
4265
            'CP1255'      => 'WINDOWS-1255',
4266
            'WIN1255'     => 'WINDOWS-1255',
4267
            'WINDOWS1255' => 'WINDOWS-1255',
4268
            'CP1256'      => 'WINDOWS-1256',
4269
            'WIN1256'     => 'WINDOWS-1256',
4270
            'WINDOWS1256' => 'WINDOWS-1256',
4271
            'CP1257'      => 'WINDOWS-1257',
4272
            'WIN1257'     => 'WINDOWS-1257',
4273
            'WINDOWS1257' => 'WINDOWS-1257',
4274
            'CP1258'      => 'WINDOWS-1258',
4275
            'WIN1258'     => 'WINDOWS-1258',
4276
            'WINDOWS1258' => 'WINDOWS-1258',
4277
            'UTF16'       => 'UTF-16',
4278
            'UTF32'       => 'UTF-32',
4279
            'UTF8'        => 'UTF-8',
4280
            'UTF'         => 'UTF-8',
4281
            'UTF7'        => 'UTF-7',
4282
            '8BIT'        => 'CP850',
4283
            'BINARY'      => 'CP850',
4284
        ];
4285
4286 5
        if (!empty($equivalences[$encodingUpperHelper])) {
4287 4
            $encoding = $equivalences[$encodingUpperHelper];
4288
        }
4289
4290 5
        $STATIC_NORMALIZE_ENCODING_CACHE[$encodingOrig] = $encoding;
4291
4292 5
        return $encoding;
4293
    }
4294
4295
    /**
4296
     * Standardize line ending to unix-like.
4297
     *
4298
     * @param string $str
4299
     *
4300
     * @return string
4301
     */
4302 5
    public static function normalize_line_ending(string $str): string
4303
    {
4304 5
        return \str_replace(["\r\n", "\r"], "\n", $str);
4305
    }
4306
4307
    /**
4308
     * Normalize some MS Word special characters.
4309
     *
4310
     * @param string $str <p>The string to be normalized.</p>
4311
     *
4312
     * @return string
4313
     */
4314 38
    public static function normalize_msword(string $str): string
4315
    {
4316 38
        if ($str === '') {
4317 2
            return '';
4318
        }
4319
4320
        $keys = [
4321 38
            "\xc2\xab", // « (U+00AB) in UTF-8
4322
            "\xc2\xbb", // » (U+00BB) in UTF-8
4323
            "\xe2\x80\x98", // ‘ (U+2018) in UTF-8
4324
            "\xe2\x80\x99", // ’ (U+2019) in UTF-8
4325
            "\xe2\x80\x9a", // ‚ (U+201A) in UTF-8
4326
            "\xe2\x80\x9b", // ‛ (U+201B) in UTF-8
4327
            "\xe2\x80\x9c", // “ (U+201C) in UTF-8
4328
            "\xe2\x80\x9d", // ” (U+201D) in UTF-8
4329
            "\xe2\x80\x9e", // „ (U+201E) in UTF-8
4330
            "\xe2\x80\x9f", // ‟ (U+201F) in UTF-8
4331
            "\xe2\x80\xb9", // ‹ (U+2039) in UTF-8
4332
            "\xe2\x80\xba", // › (U+203A) in UTF-8
4333
            "\xe2\x80\x93", // – (U+2013) in UTF-8
4334
            "\xe2\x80\x94", // — (U+2014) in UTF-8
4335
            "\xe2\x80\xa6", // … (U+2026) in UTF-8
4336
        ];
4337
4338
        $values = [
4339 38
            '"', // « (U+00AB) in UTF-8
4340
            '"', // » (U+00BB) in UTF-8
4341
            "'", // ‘ (U+2018) in UTF-8
4342
            "'", // ’ (U+2019) in UTF-8
4343
            "'", // ‚ (U+201A) in UTF-8
4344
            "'", // ‛ (U+201B) in UTF-8
4345
            '"', // “ (U+201C) in UTF-8
4346
            '"', // ” (U+201D) in UTF-8
4347
            '"', // „ (U+201E) in UTF-8
4348
            '"', // ‟ (U+201F) in UTF-8
4349
            "'", // ‹ (U+2039) in UTF-8
4350
            "'", // › (U+203A) in UTF-8
4351
            '-', // – (U+2013) in UTF-8
4352
            '-', // — (U+2014) in UTF-8
4353
            '...', // … (U+2026) in UTF-8
4354
        ];
4355
4356 38
        return \str_replace($keys, $values, $str);
4357
    }
4358
4359
    /**
4360
     * Normalize the whitespace.
4361
     *
4362
     * @param string $str                     <p>The string to be normalized.</p>
4363
     * @param bool   $keepNonBreakingSpace    [optional] <p>Set to true, to keep non-breaking-spaces.</p>
4364
     * @param bool   $keepBidiUnicodeControls [optional] <p>Set to true, to keep non-printable (for the web)
4365
     *                                        bidirectional text chars.</p>
4366
     *
4367
     * @return string
4368
     */
4369 86
    public static function normalize_whitespace(string $str, bool $keepNonBreakingSpace = false, bool $keepBidiUnicodeControls = false): string
4370
    {
4371 86
        if ($str === '') {
4372 9
            return '';
4373
        }
4374
4375 86
        static $WHITESPACE_CACHE = [];
4376 86
        $cacheKey = (int) $keepNonBreakingSpace;
4377
4378 86
        if (!isset($WHITESPACE_CACHE[$cacheKey])) {
4379 2
            $WHITESPACE_CACHE[$cacheKey] = self::$WHITESPACE_TABLE;
4380
4381 2
            if ($keepNonBreakingSpace === true) {
4382 1
                unset($WHITESPACE_CACHE[$cacheKey]['NO-BREAK SPACE']);
4383
            }
4384
4385 2
            $WHITESPACE_CACHE[$cacheKey] = \array_values($WHITESPACE_CACHE[$cacheKey]);
4386
        }
4387
4388 86
        if ($keepBidiUnicodeControls === false) {
4389 86
            static $BIDI_UNICODE_CONTROLS_CACHE = null;
4390
4391 86
            if ($BIDI_UNICODE_CONTROLS_CACHE === null) {
4392 1
                $BIDI_UNICODE_CONTROLS_CACHE = \array_values(self::$BIDI_UNI_CODE_CONTROLS_TABLE);
4393
            }
4394
4395 86
            $str = \str_replace($BIDI_UNICODE_CONTROLS_CACHE, '', $str);
4396
        }
4397
4398 86
        return \str_replace($WHITESPACE_CACHE[$cacheKey], ' ', $str);
4399
    }
4400
4401
    /**
4402
     * Calculates Unicode code point of the given UTF-8 encoded character.
4403
     *
4404
     * INFO: opposite to UTF8::chr()
4405
     *
4406
     * @param string $chr      <p>The character of which to calculate code point.<p/>
4407
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
4408
     *
4409
     * @return int
4410
     *             Unicode code point of the given character,<br>
4411
     *             0 on invalid UTF-8 byte sequence
4412
     */
4413 30
    public static function ord($chr, string $encoding = 'UTF-8'): int
4414
    {
4415 30
        static $CHAR_CACHE = [];
4416
4417
        // init
4418 30
        $chr = (string) $chr;
4419
4420 30
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
4421 5
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
4422
        }
4423
4424 30
        $cacheKey = $chr . $encoding;
4425 30
        if (isset($CHAR_CACHE[$cacheKey]) === true) {
4426 30
            return $CHAR_CACHE[$cacheKey];
4427
        }
4428
4429
        // check again, if it's still not UTF-8
4430 12
        if ($encoding !== 'UTF-8') {
4431 3
            $chr = self::encode($encoding, $chr);
4432
        }
4433
4434 12
        if (self::$ORD === null) {
4435
            self::$ORD = self::getData('ord');
4436
        }
4437
4438 12
        if (isset(self::$ORD[$chr])) {
4439 12
            return $CHAR_CACHE[$cacheKey] = self::$ORD[$chr];
4440
        }
4441
4442
        //
4443
        // fallback via "IntlChar"
4444
        //
4445
4446 6
        if (self::$SUPPORT['intlChar'] === true) {
4447
            /** @noinspection PhpComposerExtensionStubsInspection */
4448 5
            $code = \IntlChar::ord($chr);
4449 5
            if ($code) {
4450 5
                return $CHAR_CACHE[$cacheKey] = $code;
4451
            }
4452
        }
4453
4454
        //
4455
        // fallback via vanilla php
4456
        //
4457
4458
        /** @noinspection CallableParameterUseCaseInTypeContextInspection */
4459 1
        $chr = \unpack('C*', (string) \substr($chr, 0, 4));
4460 1
        $code = $chr ? $chr[1] : 0;
4461
4462 1
        if ($code >= 0xF0 && isset($chr[4])) {
4463
            /** @noinspection UnnecessaryCastingInspection */
4464
            return $CHAR_CACHE[$cacheKey] = (int) ((($code - 0xF0) << 18) + (($chr[2] - 0x80) << 12) + (($chr[3] - 0x80) << 6) + $chr[4] - 0x80);
4465
        }
4466
4467 1
        if ($code >= 0xE0 && isset($chr[3])) {
4468
            /** @noinspection UnnecessaryCastingInspection */
4469 1
            return $CHAR_CACHE[$cacheKey] = (int) ((($code - 0xE0) << 12) + (($chr[2] - 0x80) << 6) + $chr[3] - 0x80);
4470
        }
4471
4472 1
        if ($code >= 0xC0 && isset($chr[2])) {
4473
            /** @noinspection UnnecessaryCastingInspection */
4474 1
            return $CHAR_CACHE[$cacheKey] = (int) ((($code - 0xC0) << 6) + $chr[2] - 0x80);
4475
        }
4476
4477
        return $CHAR_CACHE[$cacheKey] = $code;
4478
    }
4479
4480
    /**
4481
     * Parses the string into an array (into the the second parameter).
4482
     *
4483
     * WARNING: Instead of "parse_str()" this method do not (re-)placing variables in the current scope,
4484
     *          if the second parameter is not set!
4485
     *
4486
     * @see http://php.net/manual/en/function.parse-str.php
4487
     *
4488
     * @param string $str       <p>The input string.</p>
4489
     * @param array  $result    <p>The result will be returned into this reference parameter.</p>
4490
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
4491
     *
4492
     * @return bool
4493
     *              Will return <strong>false</strong> if php can't parse the string and we haven't any $result
4494
     */
4495 2
    public static function parse_str(string $str, &$result, bool $cleanUtf8 = false): bool
4496
    {
4497 2
        if ($cleanUtf8 === true) {
4498 2
            $str = self::clean($str);
4499
        }
4500
4501 2
        if (self::$SUPPORT['mbstring'] === true) {
4502 2
            $return = \mb_parse_str($str, $result);
4503
4504 2
            return $return !== false && $result !== [];
4505
        }
4506
4507
        /** @noinspection PhpVoidFunctionResultUsedInspection */
4508
        \parse_str($str, $result);
4509
4510
        return $result !== [];
4511
    }
4512
4513
    /**
4514
     * Checks if \u modifier is available that enables Unicode support in PCRE.
4515
     *
4516
     * @return bool
4517
     *              <strong>true</strong> if support is available,<br>
4518
     *              <strong>false</strong> otherwise
4519
     */
4520 102
    public static function pcre_utf8_support(): bool
4521
    {
4522
        /** @noinspection PhpUsageOfSilenceOperatorInspection */
4523 102
        return (bool) @\preg_match('//u', '');
4524
    }
4525
4526
    /**
4527
     * Create an array containing a range of UTF-8 characters.
4528
     *
4529
     * @param mixed $var1 <p>Numeric or hexadecimal code points, or a UTF-8 character to start from.</p>
4530
     * @param mixed $var2 <p>Numeric or hexadecimal code points, or a UTF-8 character to end at.</p>
4531
     *
4532
     * @return string[]
4533
     */
4534 2
    public static function range($var1, $var2): array
4535
    {
4536 2
        if (!$var1 || !$var2) {
4537 2
            return [];
4538
        }
4539
4540 2
        if (self::$SUPPORT['ctype'] === false) {
4541
            throw new \RuntimeException('ext-ctype: is not installed');
4542
        }
4543
4544
        /** @noinspection PhpComposerExtensionStubsInspection */
4545 2
        if (\ctype_digit((string) $var1)) {
4546 2
            $start = (int) $var1;
4547 2
        } /** @noinspection PhpComposerExtensionStubsInspection */ elseif (\ctype_xdigit($var1)) {
4548
            $start = (int) self::hex_to_int($var1);
4549
        } else {
4550 2
            $start = self::ord($var1);
4551
        }
4552
4553 2
        if (!$start) {
4554
            return [];
4555
        }
4556
4557
        /** @noinspection PhpComposerExtensionStubsInspection */
4558 2
        if (\ctype_digit((string) $var2)) {
4559 2
            $end = (int) $var2;
4560 2
        } /** @noinspection PhpComposerExtensionStubsInspection */ elseif (\ctype_xdigit($var2)) {
4561
            $end = (int) self::hex_to_int($var2);
4562
        } else {
4563 2
            $end = self::ord($var2);
4564
        }
4565
4566 2
        if (!$end) {
4567
            return [];
4568
        }
4569
4570 2
        return \array_map(
4571
            static function (int $i): string {
4572 2
                return (string) self::chr($i);
4573 2
            },
4574 2
            \range($start, $end)
4575
        );
4576
    }
4577
4578
    /**
4579
     * Multi decode html entity & fix urlencoded-win1252-chars.
4580
     *
4581
     * e.g:
4582
     * 'test+test'                     => 'test+test'
4583
     * 'D&#252;sseldorf'               => 'Düsseldorf'
4584
     * 'D%FCsseldorf'                  => 'Düsseldorf'
4585
     * 'D&#xFC;sseldorf'               => 'Düsseldorf'
4586
     * 'D%26%23xFC%3Bsseldorf'         => 'Düsseldorf'
4587
     * 'Düsseldorf'                   => 'Düsseldorf'
4588
     * 'D%C3%BCsseldorf'               => 'Düsseldorf'
4589
     * 'D%C3%83%C2%BCsseldorf'         => 'Düsseldorf'
4590
     * 'D%25C3%2583%25C2%25BCsseldorf' => 'Düsseldorf'
4591
     *
4592
     * @param string $str          <p>The input string.</p>
4593
     * @param bool   $multi_decode <p>Decode as often as possible.</p>
4594
     *
4595
     * @return string
4596
     */
4597 6
    public static function rawurldecode(string $str, bool $multi_decode = true): string
4598
    {
4599 6
        if ($str === '') {
4600 4
            return '';
4601
        }
4602
4603
        if (
4604 6
            \strpos($str, '&') === false
4605
            &&
4606 6
            \strpos($str, '%') === false
4607
            &&
4608 6
            \strpos($str, '+') === false
4609
            &&
4610 6
            \strpos($str, '\u') === false
4611
        ) {
4612 4
            return self::fix_simple_utf8($str);
4613
        }
4614
4615 6
        $str = self::urldecode_unicode_helper($str);
4616
4617
        do {
4618 6
            $str_compare = $str;
4619
4620
            /**
4621
             * @psalm-suppress PossiblyInvalidArgument
4622
             */
4623 6
            $str = self::fix_simple_utf8(
4624 6
                \rawurldecode(
4625 6
                    self::html_entity_decode(
4626 6
                        self::to_utf8($str),
4627 6
                        \ENT_QUOTES | \ENT_HTML5
4628
                    )
4629
                )
4630
            );
4631 6
        } while ($multi_decode === true && $str_compare !== $str);
4632
4633 6
        return $str;
4634
    }
4635
4636
    /**
4637
     * Replaces all occurrences of $pattern in $str by $replacement.
4638
     *
4639
     * @param string $str         <p>The input string.</p>
4640
     * @param string $pattern     <p>The regular expression pattern.</p>
4641
     * @param string $replacement <p>The string to replace with.</p>
4642
     * @param string $options     [optional] <p>Matching conditions to be used.</p>
4643
     * @param string $delimiter   [optional] <p>Delimiter the the regex. Default: '/'</p>
4644
     *
4645
     * @return string
4646
     */
4647 18
    public static function regex_replace(
4648
        string $str,
4649
        string $pattern,
4650
        string $replacement,
4651
        string $options = '',
4652
        string $delimiter = '/'
4653
    ): string {
4654 18
        if ($options === 'msr') {
4655 9
            $options = 'ms';
4656
        }
4657
4658
        // fallback
4659 18
        if (!$delimiter) {
4660
            $delimiter = '/';
4661
        }
4662
4663 18
        return (string) \preg_replace(
4664 18
            $delimiter . $pattern . $delimiter . 'u' . $options,
4665 18
            $replacement,
4666 18
            $str
4667
        );
4668
    }
4669
4670
    /**
4671
     * alias for "UTF8::remove_bom()"
4672
     *
4673
     * @param string $str
4674
     *
4675
     * @return string
4676
     *
4677
     * @see UTF8::remove_bom()
4678
     * @deprecated <p>use "UTF8::remove_bom()"</p>
4679
     */
4680
    public static function removeBOM(string $str): string
4681
    {
4682
        return self::remove_bom($str);
4683
    }
4684
4685
    /**
4686
     * Remove the BOM from UTF-8 / UTF-16 / UTF-32 strings.
4687
     *
4688
     * @param string $str <p>The input string.</p>
4689
     *
4690
     * @return string string without UTF-BOM
4691
     */
4692 82
    public static function remove_bom(string $str): string
4693
    {
4694 82
        if ($str === '') {
4695 9
            return '';
4696
        }
4697
4698 82
        $strLength = \strlen($str);
4699 82
        foreach (self::$BOM as $bomString => $bomByteLength) {
4700 82
            if (\strpos($str, $bomString, 0) === 0) {
4701 10
                $strTmp = \substr($str, $bomByteLength, $strLength);
4702 10
                if ($strTmp === false) {
4703
                    return '';
4704
                }
4705
4706 10
                $strLength -= (int) $bomByteLength;
4707
4708 82
                $str = (string) $strTmp;
4709
            }
4710
        }
4711
4712 82
        return $str;
4713
    }
4714
4715
    /**
4716
     * Removes duplicate occurrences of a string in another string.
4717
     *
4718
     * @param string          $str  <p>The base string.</p>
4719
     * @param string|string[] $what <p>String to search for in the base string.</p>
4720
     *
4721
     * @return string the result string with removed duplicates
4722
     */
4723 2
    public static function remove_duplicates(string $str, $what = ' '): string
4724
    {
4725 2
        if (\is_string($what) === true) {
4726 2
            $what = [$what];
4727
        }
4728
4729 2
        if (\is_array($what) === true) {
0 ignored issues
show
introduced by
The condition is_array($what) === true is always true.
Loading history...
4730
            /** @noinspection ForeachSourceInspection */
4731 2
            foreach ($what as $item) {
4732 2
                $str = (string) \preg_replace('/(' . \preg_quote($item, '/') . ')+/u', $item, $str);
4733
            }
4734
        }
4735
4736 2
        return $str;
4737
    }
4738
4739
    /**
4740
     * Remove html via "strip_tags()" from the string.
4741
     *
4742
     * @param string $str
4743
     * @param string $allowableTags [optional] <p>You can use the optional second parameter to specify tags which should
4744
     *                              not be stripped. Default: null
4745
     *                              </p>
4746
     *
4747
     * @return string
4748
     */
4749 6
    public static function remove_html(string $str, string $allowableTags = ''): string
4750
    {
4751 6
        return \strip_tags($str, $allowableTags);
4752
    }
4753
4754
    /**
4755
     * Remove all breaks [<br> | \r\n | \r | \n | ...] from the string.
4756
     *
4757
     * @param string $str
4758
     * @param string $replacement [optional] <p>Default is a empty string.</p>
4759
     *
4760
     * @return string
4761
     */
4762 6
    public static function remove_html_breaks(string $str, string $replacement = ''): string
4763
    {
4764 6
        return (string) \preg_replace("#/\r\n|\r|\n|<br.*/?>#isU", $replacement, $str);
4765
    }
4766
4767
    /**
4768
     * Remove invisible characters from a string.
4769
     *
4770
     * e.g.: This prevents sandwiching null characters between ascii characters, like Java\0script.
4771
     *
4772
     * copy&past from https://github.com/bcit-ci/CodeIgniter/blob/develop/system/core/Common.php
4773
     *
4774
     * @param string $str
4775
     * @param bool   $url_encoded
4776
     * @param string $replacement
4777
     *
4778
     * @return string
4779
     */
4780 116
    public static function remove_invisible_characters(string $str, bool $url_encoded = true, string $replacement = ''): string
4781
    {
4782
        // init
4783 116
        $non_displayables = [];
4784
4785
        // every control character except newline (dec 10),
4786
        // carriage return (dec 13) and horizontal tab (dec 09)
4787 116
        if ($url_encoded) {
4788 116
            $non_displayables[] = '/%0[0-8bcefBCEF]/'; // url encoded 00-08, 11, 12, 14, 15
4789 116
            $non_displayables[] = '/%1[0-9a-fA-F]/'; // url encoded 16-31
4790
        }
4791
4792 116
        $non_displayables[] = '/[\x00-\x08\x0B\x0C\x0E-\x1F\x7F]+/S'; // 00-08, 11, 12, 14-31, 127
4793
4794
        do {
4795 116
            $str = (string) \preg_replace($non_displayables, $replacement, $str, -1, $count);
4796 116
        } while ($count !== 0);
4797
4798 116
        return $str;
4799
    }
4800
4801
    /**
4802
     * Returns a new string with the prefix $substring removed, if present.
4803
     *
4804
     * @param string $str
4805
     * @param string $substring <p>The prefix to remove.</p>
4806
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
4807
     *
4808
     * @return string string without the prefix $substring
4809
     */
4810 12
    public static function remove_left(string $str, string $substring, string $encoding = 'UTF-8'): string
4811
    {
4812 12
        if ($substring && \strpos($str, $substring) === 0) {
4813 6
            if ($encoding === 'UTF-8') {
4814 4
                return (string) \mb_substr(
4815 4
                    $str,
4816 4
                    (int) \mb_strlen($substring)
4817
                );
4818
            }
4819
4820 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
4821
4822 2
            return (string) self::substr(
4823 2
                $str,
4824 2
                (int) self::strlen($substring, $encoding),
4825 2
                null,
4826 2
                $encoding
4827
            );
4828
        }
4829
4830 6
        return $str;
4831
    }
4832
4833
    /**
4834
     * Returns a new string with the suffix $substring removed, if present.
4835
     *
4836
     * @param string $str
4837
     * @param string $substring <p>The suffix to remove.</p>
4838
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
4839
     *
4840
     * @return string string having a $str without the suffix $substring
4841
     */
4842 12
    public static function remove_right(string $str, string $substring, string $encoding = 'UTF-8'): string
4843
    {
4844 12
        if ($substring && \substr($str, -\strlen($substring)) === $substring) {
4845 6
            if ($encoding === 'UTF-8') {
4846 4
                return (string) \mb_substr(
4847 4
                    $str,
4848 4
                    0,
4849 4
                    (int) \mb_strlen($str) - (int) \mb_strlen($substring)
4850
                );
4851
            }
4852
4853 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
4854
4855 2
            return (string) self::substr(
4856 2
                $str,
4857 2
                0,
4858 2
                (int) self::strlen($str, $encoding) - (int) self::strlen($substring, $encoding),
4859 2
                $encoding
4860
            );
4861
        }
4862
4863 6
        return $str;
4864
    }
4865
4866
    /**
4867
     * Replaces all occurrences of $search in $str by $replacement.
4868
     *
4869
     * @param string $str           <p>The input string.</p>
4870
     * @param string $search        <p>The needle to search for.</p>
4871
     * @param string $replacement   <p>The string to replace with.</p>
4872
     * @param bool   $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
4873
     *
4874
     * @return string string after the replacements
4875
     */
4876 29
    public static function replace(
4877
        string $str,
4878
        string $search,
4879
        string $replacement,
4880
        bool $caseSensitive = true
4881
    ): string {
4882 29
        if ($caseSensitive) {
4883 22
            return \str_replace($search, $replacement, $str);
4884
        }
4885
4886 7
        return self::str_ireplace($search, $replacement, $str);
4887
    }
4888
4889
    /**
4890
     * Replaces all occurrences of $search in $str by $replacement.
4891
     *
4892
     * @param string       $str           <p>The input string.</p>
4893
     * @param array        $search        <p>The elements to search for.</p>
4894
     * @param array|string $replacement   <p>The string to replace with.</p>
4895
     * @param bool         $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
4896
     *
4897
     * @return string string after the replacements
4898
     */
4899 30
    public static function replace_all(
4900
        string $str,
4901
        array $search,
4902
        $replacement,
4903
        bool $caseSensitive = true
4904
    ): string {
4905 30
        if ($caseSensitive) {
4906 23
            return \str_replace($search, $replacement, $str);
4907
        }
4908
4909 7
        return self::str_ireplace($search, $replacement, $str);
4910
    }
4911
4912
    /**
4913
     * Replace the diamond question mark (�) and invalid-UTF8 chars with the replacement.
4914
     *
4915
     * @param string $str                <p>The input string</p>
4916
     * @param string $replacementChar    <p>The replacement character.</p>
4917
     * @param bool   $processInvalidUtf8 <p>Convert invalid UTF-8 chars </p>
4918
     *
4919
     * @return string
4920
     */
4921 62
    public static function replace_diamond_question_mark(string $str, string $replacementChar = '', bool $processInvalidUtf8 = true): string
4922
    {
4923 62
        if ($str === '') {
4924 9
            return '';
4925
        }
4926
4927 62
        if ($processInvalidUtf8 === true) {
4928 62
            $replacementCharHelper = $replacementChar;
4929 62
            if ($replacementChar === '') {
4930 62
                $replacementCharHelper = 'none';
4931
            }
4932
4933 62
            if (self::$SUPPORT['mbstring'] === false) {
4934
                // if there is no native support for "mbstring",
4935
                // then we need to clean the string before ...
4936
                $str = self::clean($str);
4937
            }
4938
4939 62
            $save = \mb_substitute_character();
4940 62
            \mb_substitute_character($replacementCharHelper);
4941
            // the polyfill maybe return false, so cast to string
4942 62
            $str = (string) \mb_convert_encoding($str, 'UTF-8', 'UTF-8');
4943 62
            \mb_substitute_character($save);
4944
        }
4945
4946 62
        return \str_replace(
4947
            [
4948 62
                "\xEF\xBF\xBD",
4949
                '�',
4950
            ],
4951
            [
4952 62
                $replacementChar,
4953 62
                $replacementChar,
4954
            ],
4955 62
            $str
4956
        );
4957
    }
4958
4959
    /**
4960
     * Strip whitespace or other characters from end of a UTF-8 string.
4961
     *
4962
     * @param string      $str   <p>The string to be trimmed.</p>
4963
     * @param string|null $chars <p>Optional characters to be stripped.</p>
4964
     *
4965
     * @return string the string with unwanted characters stripped from the right
4966
     */
4967 20
    public static function rtrim(string $str = '', string $chars = null): string
4968
    {
4969 20
        if ($str === '') {
4970 3
            return '';
4971
        }
4972
4973 19
        if ($chars) {
4974 8
            $chars = \preg_quote($chars, '/');
4975 8
            $pattern = "[${chars}]+\$";
4976
        } else {
4977 14
            $pattern = "[\s]+\$";
4978
        }
4979
4980 19
        if (self::$SUPPORT['mbstring'] === true) {
4981
            /** @noinspection PhpComposerExtensionStubsInspection */
4982 19
            return (string) \mb_ereg_replace($pattern, '', $str);
4983
        }
4984
4985
        return self::regex_replace($str, $pattern, '', '', '/');
4986
    }
4987
4988
    /**
4989
     * WARNING: Print native UTF-8 support (libs), e.g. for debugging.
4990
     *
4991
     * @psalm-suppress MissingReturnType
4992
     */
4993 2
    public static function showSupport()
4994
    {
4995 2
        echo '<pre>';
4996 2
        foreach (self::$SUPPORT as $key => &$value) {
4997 2
            echo $key . ' - ' . \print_r($value, true) . "\n<br>";
4998
        }
4999 2
        unset($value);
5000 2
        echo '</pre>';
5001 2
    }
5002
5003
    /**
5004
     * Converts a UTF-8 character to HTML Numbered Entity like "&#123;".
5005
     *
5006
     * @param string $char           <p>The Unicode character to be encoded as numbered entity.</p>
5007
     * @param bool   $keepAsciiChars <p>Set to <strong>true</strong> to keep ASCII chars.</>
5008
     * @param string $encoding       [optional] <p>Set the charset for e.g. "mb_" function</p>
5009
     *
5010
     * @return string the HTML numbered entity
5011
     */
5012 2
    public static function single_chr_html_encode(string $char, bool $keepAsciiChars = false, string $encoding = 'UTF-8'): string
5013
    {
5014 2
        if ($char === '') {
5015 2
            return '';
5016
        }
5017
5018
        if (
5019 2
            $keepAsciiChars === true
5020
            &&
5021 2
            self::is_ascii($char) === true
5022
        ) {
5023 2
            return $char;
5024
        }
5025
5026 2
        return '&#' . self::ord($char, $encoding) . ';';
5027
    }
5028
5029
    /**
5030
     * @param string $str
5031
     * @param int    $tabLength
5032
     *
5033
     * @return string
5034
     */
5035 5
    public static function spaces_to_tabs(string $str, int $tabLength = 4): string
5036
    {
5037 5
        if ($tabLength === 4) {
5038 3
            $tab = '    ';
5039 2
        } elseif ($tabLength === 2) {
5040 1
            $tab = '  ';
5041
        } else {
5042 1
            $tab = \str_repeat(' ', $tabLength);
5043
        }
5044
5045 5
        return \str_replace($tab, "\t", $str);
5046
    }
5047
5048
    /**
5049
     * alias for "UTF8::str_split()"
5050
     *
5051
     * @param string|string[] $str
5052
     * @param int             $length
5053
     * @param bool            $cleanUtf8
5054
     *
5055
     * @return string[]
5056
     *
5057
     * @see UTF8::str_split()
5058
     */
5059 9
    public static function split(
5060
        $str,
5061
        int $length = 1,
5062
        bool $cleanUtf8 = false
5063
    ): array {
5064 9
        return self::str_split($str, $length, $cleanUtf8);
5065
    }
5066
5067
    /**
5068
     * alias for "UTF8::str_starts_with()"
5069
     *
5070
     * @param string $haystack
5071
     * @param string $needle
5072
     *
5073
     * @return bool
5074
     *
5075
     * @see UTF8::str_starts_with()
5076
     */
5077
    public static function str_begins(string $haystack, string $needle): bool
5078
    {
5079
        return self::str_starts_with($haystack, $needle);
5080
    }
5081
5082
    /**
5083
     * Returns a camelCase version of the string. Trims surrounding spaces,
5084
     * capitalizes letters following digits, spaces, dashes and underscores,
5085
     * and removes spaces, dashes, as well as underscores.
5086
     *
5087
     * @param string      $str                   <p>The input string.</p>
5088
     * @param string      $encoding              [optional] <p>Default: 'UTF-8'</p>
5089
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
5090
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
5091
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
5092
     *
5093
     * @return string
5094
     */
5095 32
    public static function str_camelize(
5096
        string $str,
5097
        string $encoding = 'UTF-8',
5098
        bool $cleanUtf8 = false,
5099
        string $lang = null,
5100
        bool $tryToKeepStringLength = false
5101
    ): string {
5102 32
        if ($cleanUtf8 === true) {
5103
            $str = self::clean($str);
5104
        }
5105
5106 32
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
5107 26
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
5108
        }
5109
5110 32
        $str = self::lcfirst(
5111 32
            \trim($str),
5112 32
            $encoding,
5113 32
            false,
5114 32
            $lang,
5115 32
            $tryToKeepStringLength
5116
        );
5117 32
        $str = (string) \preg_replace('/^[-_]+/', '', $str);
5118
5119 32
        $useMbFunction = $lang === null && $tryToKeepStringLength === false;
5120
5121 32
        $str = (string) \preg_replace_callback(
5122 32
            '/[-_\s]+(.)?/u',
5123
            /**
5124
             * @param array $match
5125
             *
5126
             * @return string
5127
             */
5128
            static function (array $match) use ($useMbFunction, $encoding, $lang, $tryToKeepStringLength): string {
5129 27
                if (isset($match[1])) {
5130 27
                    if ($useMbFunction === true) {
5131 27
                        if ($encoding === 'UTF-8') {
5132 27
                            return \mb_strtoupper($match[1]);
5133
                        }
5134
5135
                        return \mb_strtoupper($match[1], $encoding);
5136
                    }
5137
5138
                    return self::strtoupper($match[1], $encoding, false, $lang, $tryToKeepStringLength);
5139
                }
5140
5141 1
                return '';
5142 32
            },
5143 32
            $str
5144
        );
5145
5146 32
        return (string) \preg_replace_callback(
5147 32
            '/[\d]+(.)?/u',
5148
            /**
5149
             * @param array $match
5150
             *
5151
             * @return string
5152
             */
5153
            static function (array $match) use ($useMbFunction, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength): string {
5154 6
                if ($useMbFunction === true) {
5155 6
                    if ($encoding === 'UTF-8') {
5156 6
                        return \mb_strtoupper($match[0]);
5157
                    }
5158
5159
                    return \mb_strtoupper($match[0], $encoding);
5160
                }
5161
5162
                return self::strtoupper($match[0], $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
5163 32
            },
5164 32
            $str
5165
        );
5166
    }
5167
5168
    /**
5169
     * Returns the string with the first letter of each word capitalized,
5170
     * except for when the word is a name which shouldn't be capitalized.
5171
     *
5172
     * @param string $str
5173
     *
5174
     * @return string string with $str capitalized
5175
     */
5176 1
    public static function str_capitalize_name(string $str): string
5177
    {
5178 1
        return self::str_capitalize_name_helper(
5179 1
            self::str_capitalize_name_helper(
5180 1
                self::collapse_whitespace($str),
5181 1
                ' '
5182
            ),
5183 1
            '-'
5184
        );
5185
    }
5186
5187
    /**
5188
     * Returns true if the string contains $needle, false otherwise. By default
5189
     * the comparison is case-sensitive, but can be made insensitive by setting
5190
     * $caseSensitive to false.
5191
     *
5192
     * @param string $haystack      <p>The input string.</p>
5193
     * @param string $needle        <p>Substring to look for.</p>
5194
     * @param bool   $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
5195
     *
5196
     * @return bool whether or not $haystack contains $needle
5197
     */
5198 21
    public static function str_contains(
5199
        string $haystack,
5200
        string $needle,
5201
        bool $caseSensitive = true
5202
    ): bool {
5203 21
        if ($caseSensitive) {
5204 11
            return \strpos($haystack, $needle) !== false;
5205
        }
5206
5207 10
        return \mb_stripos($haystack, $needle) !== false;
5208
    }
5209
5210
    /**
5211
     * Returns true if the string contains all $needles, false otherwise. By
5212
     * default the comparison is case-sensitive, but can be made insensitive by
5213
     * setting $caseSensitive to false.
5214
     *
5215
     * @param string $haystack      <p>The input string.</p>
5216
     * @param array  $needles       <p>SubStrings to look for.</p>
5217
     * @param bool   $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
5218
     *
5219
     * @return bool whether or not $haystack contains $needle
5220
     */
5221 44
    public static function str_contains_all(
5222
        string $haystack,
5223
        array $needles,
5224
        bool $caseSensitive = true
5225
    ): bool {
5226 44
        if ($haystack === '' || $needles === []) {
5227 1
            return false;
5228
        }
5229
5230
        /** @noinspection LoopWhichDoesNotLoopInspection */
5231 43
        foreach ($needles as &$needle) {
5232 43
            if (!$needle) {
5233 1
                return false;
5234
            }
5235
5236 42
            if ($caseSensitive) {
5237 22
                return \strpos($haystack, $needle) !== false;
5238
            }
5239
5240 20
            return \mb_stripos($haystack, $needle) !== false;
5241
        }
5242
5243
        return true;
5244
    }
5245
5246
    /**
5247
     * Returns true if the string contains any $needles, false otherwise. By
5248
     * default the comparison is case-sensitive, but can be made insensitive by
5249
     * setting $caseSensitive to false.
5250
     *
5251
     * @param string $haystack      <p>The input string.</p>
5252
     * @param array  $needles       <p>SubStrings to look for.</p>
5253
     * @param bool   $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
5254
     *
5255
     * @return bool
5256
     *              Whether or not $str contains $needle
5257
     */
5258 46
    public static function str_contains_any(
5259
        string $haystack,
5260
        array $needles,
5261
        bool $caseSensitive = true
5262
    ): bool {
5263 46
        if ($haystack === '' || $needles === []) {
5264 1
            return false;
5265
        }
5266
5267
        /** @noinspection LoopWhichDoesNotLoopInspection */
5268 45
        foreach ($needles as &$needle) {
5269 45
            if (!$needle) {
5270
                continue;
5271
            }
5272
5273 45
            if ($caseSensitive) {
5274 25
                if (\strpos($haystack, $needle) !== false) {
5275 14
                    return true;
5276
                }
5277
5278 13
                continue;
5279
            }
5280
5281 20
            if (\mb_stripos($haystack, $needle) !== false) {
5282 20
                return true;
5283
            }
5284
        }
5285
5286 19
        return false;
5287
    }
5288
5289
    /**
5290
     * Returns a lowercase and trimmed string separated by dashes. Dashes are
5291
     * inserted before uppercase characters (with the exception of the first
5292
     * character of the string), and in place of spaces as well as underscores.
5293
     *
5294
     * @param string $str      <p>The input string.</p>
5295
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
5296
     *
5297
     * @return string
5298
     */
5299 19
    public static function str_dasherize(string $str, string $encoding = 'UTF-8'): string
5300
    {
5301 19
        return self::str_delimit($str, '-', $encoding);
5302
    }
5303
5304
    /**
5305
     * Returns a lowercase and trimmed string separated by the given delimiter.
5306
     * Delimiters are inserted before uppercase characters (with the exception
5307
     * of the first character of the string), and in place of spaces, dashes,
5308
     * and underscores. Alpha delimiters are not converted to lowercase.
5309
     *
5310
     * @param string      $str                   <p>The input string.</p>
5311
     * @param string      $delimiter             <p>Sequence used to separate parts of the string.</p>
5312
     * @param string      $encoding              [optional] <p>Set the charset for e.g. "mb_" function</p>
5313
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
5314
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt,
5315
     *                                           tr</p>
5316
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ ->
5317
     *                                           ß</p>
5318
     *
5319
     * @return string
5320
     */
5321 49
    public static function str_delimit(
5322
        string $str,
5323
        string $delimiter,
5324
        string $encoding = 'UTF-8',
5325
        bool $cleanUtf8 = false,
5326
        string $lang = null,
5327
        bool $tryToKeepStringLength = false
5328
    ): string {
5329 49
        if (self::$SUPPORT['mbstring'] === true) {
5330
            /** @noinspection PhpComposerExtensionStubsInspection */
5331 49
            $str = (string) \mb_ereg_replace('\B(\p{Lu})', '-\1', \trim($str));
5332
5333 49
            $useMbFunction = $lang === null && $tryToKeepStringLength === false;
5334 49
            if ($useMbFunction === true && $encoding === 'UTF-8') {
5335 22
                $str = \mb_strtolower($str);
5336
            } else {
5337 27
                $str = self::strtolower($str, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
5338
            }
5339
5340
            /** @noinspection PhpComposerExtensionStubsInspection */
5341 49
            return (string) \mb_ereg_replace('[\-_\s]+', $delimiter, $str);
5342
        }
5343
5344
        $str = (string) \preg_replace('/\B(\p{Lu})/u', '-\1', \trim($str));
5345
5346
        $useMbFunction = $lang === null && $tryToKeepStringLength === false;
5347
        if ($useMbFunction === true && $encoding === 'UTF-8') {
5348
            $str = \mb_strtolower($str);
5349
        } else {
5350
            $str = self::strtolower($str, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
5351
        }
5352
5353
        return (string) \preg_replace('/[\-_\s]+/u', $delimiter, $str);
5354
    }
5355
5356
    /**
5357
     * Optimized "mb_detect_encoding()"-function -> with support for UTF-16 and UTF-32.
5358
     *
5359
     * @param string $str <p>The input string.</p>
5360
     *
5361
     * @return false|string
5362
     *                      The detected string-encoding e.g. UTF-8 or UTF-16BE,<br>
5363
     *                      otherwise it will return false e.g. for BINARY or not detected encoding.
5364
     */
5365 30
    public static function str_detect_encoding($str)
5366
    {
5367
        // init
5368 30
        $str = (string) $str;
5369
5370
        //
5371
        // 1.) check binary strings (010001001...) like UTF-16 / UTF-32 / PDF / Images / ...
5372
        //
5373
5374 30
        if (self::is_binary($str, true) === true) {
5375 11
            $isUtf16 = self::is_utf16($str, false);
5376 11
            if ($isUtf16 === 1) {
5377 2
                return 'UTF-16LE';
5378
            }
5379 11
            if ($isUtf16 === 2) {
5380 2
                return 'UTF-16BE';
5381
            }
5382
5383 9
            $isUtf32 = self::is_utf32($str, false);
5384 9
            if ($isUtf32 === 1) {
5385
                return 'UTF-32LE';
5386
            }
5387 9
            if ($isUtf32 === 2) {
5388
                return 'UTF-32BE';
5389
            }
5390
5391
            // is binary but not "UTF-16" or "UTF-32"
5392 9
            return false;
5393
        }
5394
5395
        //
5396
        // 2.) simple check for ASCII chars
5397
        //
5398
5399 26
        if (self::is_ascii($str) === true) {
5400 10
            return 'ASCII';
5401
        }
5402
5403
        //
5404
        // 3.) simple check for UTF-8 chars
5405
        //
5406
5407 26
        if (self::is_utf8($str) === true) {
5408 19
            return 'UTF-8';
5409
        }
5410
5411
        //
5412
        // 4.) check via "mb_detect_encoding()"
5413
        //
5414
        // INFO: UTF-16, UTF-32, UCS2 and UCS4, encoding detection will fail always with "mb_detect_encoding()"
5415
5416 15
        if (self::$SUPPORT['mbstring'] === true) {
5417
            // info: do not use the symfony polyfill here
5418 15
            $encoding = \mb_detect_encoding($str, \mb_detect_order(), true);
5419 15
            if ($encoding) {
5420
                return $encoding;
5421
            }
5422
        }
5423
5424
        //
5425
        // 5.) check via "iconv()"
5426
        //
5427
5428 15
        if (self::$ENCODINGS === null) {
5429
            self::$ENCODINGS = self::getData('encodings');
5430
        }
5431
5432 15
        foreach (self::$ENCODINGS as $encodingTmp) {
5433
            // INFO: //IGNORE but still throw notice
5434
            /** @noinspection PhpUsageOfSilenceOperatorInspection */
5435 15
            if ((string) @\iconv($encodingTmp, $encodingTmp . '//IGNORE', $str) === $str) {
5436 15
                return $encodingTmp;
5437
            }
5438
        }
5439
5440
        return false;
5441
    }
5442
5443
    /**
5444
     * alias for "UTF8::str_ends_with()"
5445
     *
5446
     * @param string $haystack
5447
     * @param string $needle
5448
     *
5449
     * @return bool
5450
     *
5451
     * @see UTF8::str_ends_with()
5452
     */
5453
    public static function str_ends(string $haystack, string $needle): bool
5454
    {
5455
        return self::str_ends_with($haystack, $needle);
5456
    }
5457
5458
    /**
5459
     * Check if the string ends with the given substring.
5460
     *
5461
     * @param string $haystack <p>The string to search in.</p>
5462
     * @param string $needle   <p>The substring to search for.</p>
5463
     *
5464
     * @return bool
5465
     */
5466 9
    public static function str_ends_with(string $haystack, string $needle): bool
5467
    {
5468 9
        if ($needle === '') {
5469 2
            return true;
5470
        }
5471
5472 9
        if ($haystack === '') {
5473
            return false;
5474
        }
5475
5476 9
        return \substr($haystack, -\strlen($needle)) === $needle;
5477
    }
5478
5479
    /**
5480
     * Returns true if the string ends with any of $substrings, false otherwise.
5481
     *
5482
     * - case-sensitive
5483
     *
5484
     * @param string   $str        <p>The input string.</p>
5485
     * @param string[] $substrings <p>Substrings to look for.</p>
5486
     *
5487
     * @return bool whether or not $str ends with $substring
5488
     */
5489 7
    public static function str_ends_with_any(string $str, array $substrings): bool
5490
    {
5491 7
        if ($substrings === []) {
5492
            return false;
5493
        }
5494
5495 7
        foreach ($substrings as &$substring) {
5496 7
            if (\substr($str, -\strlen($substring)) === $substring) {
5497 7
                return true;
5498
            }
5499
        }
5500
5501 6
        return false;
5502
    }
5503
5504
    /**
5505
     * Ensures that the string begins with $substring. If it doesn't, it's
5506
     * prepended.
5507
     *
5508
     * @param string $str       <p>The input string.</p>
5509
     * @param string $substring <p>The substring to add if not present.</p>
5510
     *
5511
     * @return string
5512
     */
5513 10
    public static function str_ensure_left(string $str, string $substring): string
5514
    {
5515
        if (
5516 10
            $substring !== ''
5517
            &&
5518 10
            \strpos($str, $substring) === 0
5519
        ) {
5520 6
            return $str;
5521
        }
5522
5523 4
        return $substring . $str;
5524
    }
5525
5526
    /**
5527
     * Ensures that the string ends with $substring. If it doesn't, it's appended.
5528
     *
5529
     * @param string $str       <p>The input string.</p>
5530
     * @param string $substring <p>The substring to add if not present.</p>
5531
     *
5532
     * @return string
5533
     */
5534 10
    public static function str_ensure_right(string $str, string $substring): string
5535
    {
5536
        if (
5537 10
            $str === ''
5538
            ||
5539 10
            $substring === ''
5540
            ||
5541 10
            \substr($str, -\strlen($substring)) !== $substring
5542
        ) {
5543 4
            $str .= $substring;
5544
        }
5545
5546 10
        return $str;
5547
    }
5548
5549
    /**
5550
     * Capitalizes the first word of the string, replaces underscores with
5551
     * spaces, and strips '_id'.
5552
     *
5553
     * @param string $str
5554
     *
5555
     * @return string
5556
     */
5557 3
    public static function str_humanize($str): string
5558
    {
5559 3
        $str = \str_replace(
5560
            [
5561 3
                '_id',
5562
                '_',
5563
            ],
5564
            [
5565 3
                '',
5566
                ' ',
5567
            ],
5568 3
            $str
5569
        );
5570
5571 3
        return self::ucfirst(\trim($str));
5572
    }
5573
5574
    /**
5575
     * alias for "UTF8::str_istarts_with()"
5576
     *
5577
     * @param string $haystack
5578
     * @param string $needle
5579
     *
5580
     * @return bool
5581
     *
5582
     * @see UTF8::str_istarts_with()
5583
     */
5584
    public static function str_ibegins(string $haystack, string $needle): bool
5585
    {
5586
        return self::str_istarts_with($haystack, $needle);
5587
    }
5588
5589
    /**
5590
     * alias for "UTF8::str_iends_with()"
5591
     *
5592
     * @param string $haystack
5593
     * @param string $needle
5594
     *
5595
     * @return bool
5596
     *
5597
     * @see UTF8::str_iends_with()
5598
     */
5599
    public static function str_iends(string $haystack, string $needle): bool
5600
    {
5601
        return self::str_iends_with($haystack, $needle);
5602
    }
5603
5604
    /**
5605
     * Check if the string ends with the given substring, case insensitive.
5606
     *
5607
     * @param string $haystack <p>The string to search in.</p>
5608
     * @param string $needle   <p>The substring to search for.</p>
5609
     *
5610
     * @return bool
5611
     */
5612 12
    public static function str_iends_with(string $haystack, string $needle): bool
5613
    {
5614 12
        if ($needle === '') {
5615 2
            return true;
5616
        }
5617
5618 12
        if ($haystack === '') {
5619
            return false;
5620
        }
5621
5622 12
        return self::strcasecmp(\substr($haystack, -\strlen($needle)), $needle) === 0;
5623
    }
5624
5625
    /**
5626
     * Returns true if the string ends with any of $substrings, false otherwise.
5627
     *
5628
     * - case-insensitive
5629
     *
5630
     * @param string   $str        <p>The input string.</p>
5631
     * @param string[] $substrings <p>Substrings to look for.</p>
5632
     *
5633
     * @return bool whether or not $str ends with $substring
5634
     */
5635 4
    public static function str_iends_with_any(string $str, array $substrings): bool
5636
    {
5637 4
        if ($substrings === []) {
5638
            return false;
5639
        }
5640
5641 4
        foreach ($substrings as &$substring) {
5642 4
            if (self::str_iends_with($str, $substring)) {
5643 4
                return true;
5644
            }
5645
        }
5646
5647
        return false;
5648
    }
5649
5650
    /**
5651
     * Returns the index of the first occurrence of $needle in the string,
5652
     * and false if not found. Accepts an optional offset from which to begin
5653
     * the search.
5654
     *
5655
     * @param string $str      <p>The input string.</p>
5656
     * @param string $needle   <p>Substring to look for.</p>
5657
     * @param int    $offset   [optional] <p>Offset from which to search. Default: 0</p>
5658
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
5659
     *
5660
     * @return false|int
5661
     *                   The occurrence's <strong>index</strong> if found, otherwise <strong>false</strong>
5662
     */
5663 2
    public static function str_iindex_first(
5664
        string $str,
5665
        string $needle,
5666
        int $offset = 0,
5667
        string $encoding = 'UTF-8'
5668
    ) {
5669 2
        return self::stripos(
5670 2
            $str,
5671 2
            $needle,
5672 2
            $offset,
5673 2
            $encoding
5674
        );
5675
    }
5676
5677
    /**
5678
     * Returns the index of the last occurrence of $needle in the string,
5679
     * and false if not found. Accepts an optional offset from which to begin
5680
     * the search. Offsets may be negative to count from the last character
5681
     * in the string.
5682
     *
5683
     * @param string $str      <p>The input string.</p>
5684
     * @param string $needle   <p>Substring to look for.</p>
5685
     * @param int    $offset   [optional] <p>Offset from which to search. Default: 0</p>
5686
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
5687
     *
5688
     * @return false|int
5689
     *                   The last occurrence's <strong>index</strong> if found, otherwise <strong>false</strong>
5690
     */
5691
    public static function str_iindex_last(
5692
        string $str,
5693
        string $needle,
5694
        int $offset = 0,
5695
        string $encoding = 'UTF-8'
5696
    ) {
5697
        return self::strripos(
5698
            $str,
5699
            $needle,
5700
            $offset,
5701
            $encoding
5702
        );
5703
    }
5704
5705
    /**
5706
     * Returns the index of the first occurrence of $needle in the string,
5707
     * and false if not found. Accepts an optional offset from which to begin
5708
     * the search.
5709
     *
5710
     * @param string $str      <p>The input string.</p>
5711
     * @param string $needle   <p>Substring to look for.</p>
5712
     * @param int    $offset   [optional] <p>Offset from which to search. Default: 0</p>
5713
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
5714
     *
5715
     * @return false|int
5716
     *                   The occurrence's <strong>index</strong> if found, otherwise <strong>false</strong>
5717
     */
5718 10
    public static function str_index_first(
5719
        string $str,
5720
        string $needle,
5721
        int $offset = 0,
5722
        string $encoding = 'UTF-8'
5723
    ) {
5724 10
        return self::strpos(
5725 10
            $str,
5726 10
            $needle,
5727 10
            $offset,
5728 10
            $encoding
5729
        );
5730
    }
5731
5732
    /**
5733
     * Returns the index of the last occurrence of $needle in the string,
5734
     * and false if not found. Accepts an optional offset from which to begin
5735
     * the search. Offsets may be negative to count from the last character
5736
     * in the string.
5737
     *
5738
     * @param string $str      <p>The input string.</p>
5739
     * @param string $needle   <p>Substring to look for.</p>
5740
     * @param int    $offset   [optional] <p>Offset from which to search. Default: 0</p>
5741
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
5742
     *
5743
     * @return false|int
5744
     *                   The last occurrence's <strong>index</strong> if found, otherwise <strong>false</strong>
5745
     */
5746 10
    public static function str_index_last(
5747
        string $str,
5748
        string $needle,
5749
        int $offset = 0,
5750
        string $encoding = 'UTF-8'
5751
    ) {
5752 10
        return self::strrpos(
5753 10
            $str,
5754 10
            $needle,
5755 10
            $offset,
5756 10
            $encoding
5757
        );
5758
    }
5759
5760
    /**
5761
     * Inserts $substring into the string at the $index provided.
5762
     *
5763
     * @param string $str       <p>The input string.</p>
5764
     * @param string $substring <p>String to be inserted.</p>
5765
     * @param int    $index     <p>The index at which to insert the substring.</p>
5766
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
5767
     *
5768
     * @return string
5769
     */
5770 8
    public static function str_insert(
5771
        string $str,
5772
        string $substring,
5773
        int $index,
5774
        string $encoding = 'UTF-8'
5775
    ): string {
5776 8
        if ($encoding === 'UTF-8') {
5777 4
            $len = (int) \mb_strlen($str);
5778 4
            if ($index > $len) {
5779
                return $str;
5780
            }
5781
5782
            /** @noinspection UnnecessaryCastingInspection */
5783 4
            return (string) \mb_substr($str, 0, $index) .
5784 4
                   $substring .
5785 4
                   (string) \mb_substr($str, $index, $len);
5786
        }
5787
5788 4
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
5789
5790 4
        $len = (int) self::strlen($str, $encoding);
5791 4
        if ($index > $len) {
5792 1
            return $str;
5793
        }
5794
5795 3
        return ((string) self::substr($str, 0, $index, $encoding)) .
5796 3
               $substring .
5797 3
               ((string) self::substr($str, $index, $len, $encoding));
5798
    }
5799
5800
    /**
5801
     * Case-insensitive and UTF-8 safe version of <function>str_replace</function>.
5802
     *
5803
     * @see http://php.net/manual/en/function.str-ireplace.php
5804
     *
5805
     * @param mixed $search  <p>
5806
     *                       Every replacement with search array is
5807
     *                       performed on the result of previous replacement.
5808
     *                       </p>
5809
     * @param mixed $replace <p>
5810
     *                       </p>
5811
     * @param mixed $subject <p>
5812
     *                       If subject is an array, then the search and
5813
     *                       replace is performed with every entry of
5814
     *                       subject, and the return value is an array as
5815
     *                       well.
5816
     *                       </p>
5817
     * @param int   $count   [optional] <p>
5818
     *                       The number of matched and replaced needles will
5819
     *                       be returned in count which is passed by
5820
     *                       reference.
5821
     *                       </p>
5822
     *
5823
     * @return mixed a string or an array of replacements
5824
     */
5825 29
    public static function str_ireplace($search, $replace, $subject, &$count = null)
5826
    {
5827 29
        $search = (array) $search;
5828
5829
        /** @noinspection AlterInForeachInspection */
5830 29
        foreach ($search as &$s) {
5831 29
            $s = (string) $s;
5832 29
            if ($s === '') {
5833 6
                $s = '/^(?<=.)$/';
5834
            } else {
5835 29
                $s = '/' . \preg_quote($s, '/') . '/ui';
5836
            }
5837
        }
5838
5839 29
        $subject = \preg_replace($search, $replace, $subject, -1, $replace);
5840 29
        $count = $replace; // used as reference parameter
5841
5842 29
        return $subject;
5843
    }
5844
5845
    /**
5846
     * Replaces $search from the beginning of string with $replacement.
5847
     *
5848
     * @param string $str         <p>The input string.</p>
5849
     * @param string $search      <p>The string to search for.</p>
5850
     * @param string $replacement <p>The replacement.</p>
5851
     *
5852
     * @return string string after the replacements
5853
     */
5854 17
    public static function str_ireplace_beginning(string $str, string $search, string $replacement): string
5855
    {
5856 17
        if ($str === '') {
5857 4
            if ($replacement === '') {
5858 2
                return '';
5859
            }
5860
5861 2
            if ($search === '') {
5862 2
                return $replacement;
5863
            }
5864
        }
5865
5866 13
        if ($search === '') {
5867 2
            return $str . $replacement;
5868
        }
5869
5870 11
        if (\stripos($str, $search) === 0) {
5871 10
            return $replacement . \substr($str, \strlen($search));
5872
        }
5873
5874 1
        return $str;
5875
    }
5876
5877
    /**
5878
     * Replaces $search from the ending of string with $replacement.
5879
     *
5880
     * @param string $str         <p>The input string.</p>
5881
     * @param string $search      <p>The string to search for.</p>
5882
     * @param string $replacement <p>The replacement.</p>
5883
     *
5884
     * @return string string after the replacements
5885
     */
5886 17
    public static function str_ireplace_ending(string $str, string $search, string $replacement): string
5887
    {
5888 17
        if ($str === '') {
5889 4
            if ($replacement === '') {
5890 2
                return '';
5891
            }
5892
5893 2
            if ($search === '') {
5894 2
                return $replacement;
5895
            }
5896
        }
5897
5898 13
        if ($search === '') {
5899 2
            return $str . $replacement;
5900
        }
5901
5902 11
        if (\stripos($str, $search, \strlen($str) - \strlen($search)) !== false) {
5903 9
            $str = \substr($str, 0, -\strlen($search)) . $replacement;
5904
        }
5905
5906 11
        return $str;
5907
    }
5908
5909
    /**
5910
     * Check if the string starts with the given substring, case insensitive.
5911
     *
5912
     * @param string $haystack <p>The string to search in.</p>
5913
     * @param string $needle   <p>The substring to search for.</p>
5914
     *
5915
     * @return bool
5916
     */
5917 12
    public static function str_istarts_with(string $haystack, string $needle): bool
5918
    {
5919 12
        if ($needle === '') {
5920 2
            return true;
5921
        }
5922
5923 12
        if ($haystack === '') {
5924
            return false;
5925
        }
5926
5927 12
        return self::stripos($haystack, $needle) === 0;
5928
    }
5929
5930
    /**
5931
     * Returns true if the string begins with any of $substrings, false otherwise.
5932
     *
5933
     * - case-insensitive
5934
     *
5935
     * @param string $str        <p>The input string.</p>
5936
     * @param array  $substrings <p>Substrings to look for.</p>
5937
     *
5938
     * @return bool whether or not $str starts with $substring
5939
     */
5940 4
    public static function str_istarts_with_any(string $str, array $substrings): bool
5941
    {
5942 4
        if ($str === '') {
5943
            return false;
5944
        }
5945
5946 4
        if ($substrings === []) {
5947
            return false;
5948
        }
5949
5950 4
        foreach ($substrings as &$substring) {
5951 4
            if (self::str_istarts_with($str, $substring)) {
5952 4
                return true;
5953
            }
5954
        }
5955
5956
        return false;
5957
    }
5958
5959
    /**
5960
     * Gets the substring after the first occurrence of a separator.
5961
     *
5962
     * @param string $str       <p>The input string.</p>
5963
     * @param string $separator <p>The string separator.</p>
5964
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
5965
     *
5966
     * @return string
5967
     */
5968 1
    public static function str_isubstr_after_first_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
5969
    {
5970 1
        if ($separator === '' || $str === '') {
5971 1
            return '';
5972
        }
5973
5974 1
        $offset = self::str_iindex_first($str, $separator);
5975 1
        if ($offset === false) {
5976 1
            return '';
5977
        }
5978
5979 1
        if ($encoding === 'UTF-8') {
5980 1
            return (string) \mb_substr(
5981 1
                $str,
5982 1
                $offset + (int) \mb_strlen($separator)
5983
            );
5984
        }
5985
5986
        return (string) self::substr(
5987
            $str,
5988
            $offset + (int) self::strlen($separator, $encoding),
5989
            null,
5990
            $encoding
5991
        );
5992
    }
5993
5994
    /**
5995
     * Gets the substring after the last occurrence of a separator.
5996
     *
5997
     * @param string $str       <p>The input string.</p>
5998
     * @param string $separator <p>The string separator.</p>
5999
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
6000
     *
6001
     * @return string
6002
     */
6003 1
    public static function str_isubstr_after_last_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
6004
    {
6005 1
        if ($separator === '' || $str === '') {
6006 1
            return '';
6007
        }
6008
6009 1
        $offset = self::strripos($str, $separator);
6010 1
        if ($offset === false) {
6011 1
            return '';
6012
        }
6013
6014 1
        if ($encoding === 'UTF-8') {
6015 1
            return (string) \mb_substr(
6016 1
                $str,
6017 1
                $offset + (int) self::strlen($separator)
6018
            );
6019
        }
6020
6021
        return (string) self::substr(
6022
            $str,
6023
            $offset + (int) self::strlen($separator, $encoding),
6024
            null,
6025
            $encoding
6026
        );
6027
    }
6028
6029
    /**
6030
     * Gets the substring before the first occurrence of a separator.
6031
     *
6032
     * @param string $str       <p>The input string.</p>
6033
     * @param string $separator <p>The string separator.</p>
6034
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
6035
     *
6036
     * @return string
6037
     */
6038 1
    public static function str_isubstr_before_first_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
6039
    {
6040 1
        if ($separator === '' || $str === '') {
6041 1
            return '';
6042
        }
6043
6044 1
        $offset = self::str_iindex_first($str, $separator);
6045 1
        if ($offset === false) {
6046 1
            return '';
6047
        }
6048
6049 1
        if ($encoding === 'UTF-8') {
6050 1
            return (string) \mb_substr($str, 0, $offset);
6051
        }
6052
6053
        return (string) self::substr($str, 0, $offset, $encoding);
6054
    }
6055
6056
    /**
6057
     * Gets the substring before the last occurrence of a separator.
6058
     *
6059
     * @param string $str       <p>The input string.</p>
6060
     * @param string $separator <p>The string separator.</p>
6061
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
6062
     *
6063
     * @return string
6064
     */
6065 1
    public static function str_isubstr_before_last_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
6066
    {
6067 1
        if ($separator === '' || $str === '') {
6068 1
            return '';
6069
        }
6070
6071 1
        if ($encoding === 'UTF-8') {
6072 1
            $offset = \mb_strripos($str, $separator);
6073 1
            if ($offset === false) {
6074 1
                return '';
6075
            }
6076
6077 1
            return (string) \mb_substr($str, 0, $offset);
6078
        }
6079
6080
        $offset = self::strripos($str, $separator, 0, $encoding);
6081
        if ($offset === false) {
6082
            return '';
6083
        }
6084
6085
        return (string) self::substr($str, 0, $offset, $encoding);
6086
    }
6087
6088
    /**
6089
     * Gets the substring after (or before via "$beforeNeedle") the first occurrence of the "$needle".
6090
     *
6091
     * @param string $str          <p>The input string.</p>
6092
     * @param string $needle       <p>The string to look for.</p>
6093
     * @param bool   $beforeNeedle [optional] <p>Default: false</p>
6094
     * @param string $encoding     [optional] <p>Default: 'UTF-8'</p>
6095
     *
6096
     * @return string
6097
     */
6098 2
    public static function str_isubstr_first(
6099
        string $str,
6100
        string $needle,
6101
        bool $beforeNeedle = false,
6102
        string $encoding = 'UTF-8'
6103
    ): string {
6104
        if (
6105 2
            $needle === ''
6106
            ||
6107 2
            $str === ''
6108
        ) {
6109 2
            return '';
6110
        }
6111
6112 2
        $part = self::stristr(
6113 2
            $str,
6114 2
            $needle,
6115 2
            $beforeNeedle,
6116 2
            $encoding
6117
        );
6118 2
        if ($part === false) {
6119 2
            return '';
6120
        }
6121
6122 2
        return $part;
6123
    }
6124
6125
    /**
6126
     * Gets the substring after (or before via "$beforeNeedle") the last occurrence of the "$needle".
6127
     *
6128
     * @param string $str          <p>The input string.</p>
6129
     * @param string $needle       <p>The string to look for.</p>
6130
     * @param bool   $beforeNeedle [optional] <p>Default: false</p>
6131
     * @param string $encoding     [optional] <p>Default: 'UTF-8'</p>
6132
     *
6133
     * @return string
6134
     */
6135 1
    public static function str_isubstr_last(
6136
        string $str,
6137
        string $needle,
6138
        bool $beforeNeedle = false,
6139
        string $encoding = 'UTF-8'
6140
    ): string {
6141
        if (
6142 1
            $needle === ''
6143
            ||
6144 1
            $str === ''
6145
        ) {
6146 1
            return '';
6147
        }
6148
6149 1
        $part = self::strrichr($str, $needle, $beforeNeedle, $encoding);
6150 1
        if ($part === false) {
6151 1
            return '';
6152
        }
6153
6154 1
        return $part;
6155
    }
6156
6157
    /**
6158
     * Returns the last $n characters of the string.
6159
     *
6160
     * @param string $str      <p>The input string.</p>
6161
     * @param int    $n        <p>Number of characters to retrieve from the end.</p>
6162
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6163
     *
6164
     * @return string
6165
     */
6166 12
    public static function str_last_char(string $str, int $n = 1, string $encoding = 'UTF-8'): string
6167
    {
6168 12
        if ($str === '' || $n <= 0) {
6169 4
            return '';
6170
        }
6171
6172 8
        if ($encoding === 'UTF-8') {
6173 4
            return (string) \mb_substr($str, -$n);
6174
        }
6175
6176 4
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
6177
6178 4
        return (string) self::substr($str, -$n, null, $encoding);
6179
    }
6180
6181
    /**
6182
     * Limit the number of characters in a string.
6183
     *
6184
     * @param string $str      <p>The input string.</p>
6185
     * @param int    $length   [optional] <p>Default: 100</p>
6186
     * @param string $strAddOn [optional] <p>Default: …</p>
6187
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6188
     *
6189
     * @return string
6190
     */
6191 2
    public static function str_limit(
6192
        string $str,
6193
        int $length = 100,
6194
        string $strAddOn = '…',
6195
        string $encoding = 'UTF-8'
6196
    ): string {
6197 2
        if ($str === '' || $length <= 0) {
6198 2
            return '';
6199
        }
6200
6201 2
        if ($encoding === 'UTF-8') {
6202 2
            if ((int) \mb_strlen($str) <= $length) {
6203 2
                return $str;
6204
            }
6205
6206
            /** @noinspection UnnecessaryCastingInspection */
6207 2
            return (string) \mb_substr($str, 0, $length - (int) self::strlen($strAddOn)) . $strAddOn;
6208
        }
6209
6210
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
6211
6212
        if ((int) self::strlen($str, $encoding) <= $length) {
6213
            return $str;
6214
        }
6215
6216
        return ((string) self::substr($str, 0, $length - (int) self::strlen($strAddOn), $encoding)) . $strAddOn;
6217
    }
6218
6219
    /**
6220
     * Limit the number of characters in a string, but also after the next word.
6221
     *
6222
     * @param string $str      <p>The input string.</p>
6223
     * @param int    $length   [optional] <p>Default: 100</p>
6224
     * @param string $strAddOn [optional] <p>Default: …</p>
6225
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6226
     *
6227
     * @return string
6228
     */
6229 6
    public static function str_limit_after_word(
6230
        string $str,
6231
        int $length = 100,
6232
        string $strAddOn = '…',
6233
        string $encoding = 'UTF-8'
6234
    ): string {
6235 6
        if ($str === '' || $length <= 0) {
6236 2
            return '';
6237
        }
6238
6239 6
        if ($encoding === 'UTF-8') {
6240
            /** @noinspection UnnecessaryCastingInspection */
6241 2
            if ((int) \mb_strlen($str) <= $length) {
6242 2
                return $str;
6243
            }
6244
6245 2
            if (\mb_substr($str, $length - 1, 1) === ' ') {
6246 2
                return ((string) \mb_substr($str, 0, $length - 1)) . $strAddOn;
6247
            }
6248
6249 2
            $str = \mb_substr($str, 0, $length);
6250
6251 2
            $array = \explode(' ', $str);
6252 2
            \array_pop($array);
6253 2
            $new_str = \implode(' ', $array);
6254
6255 2
            if ($new_str === '') {
6256 2
                return ((string) \mb_substr($str, 0, $length - 1)) . $strAddOn;
6257
            }
6258
        } else {
6259 4
            if ((int) self::strlen($str, $encoding) <= $length) {
6260
                return $str;
6261
            }
6262
6263 4
            if (self::substr($str, $length - 1, 1, $encoding) === ' ') {
6264 3
                return ((string) self::substr($str, 0, $length - 1, $encoding)) . $strAddOn;
6265
            }
6266
6267 1
            $str = self::substr($str, 0, $length, $encoding);
6268 1
            if ($str === false) {
6269
                return '' . $strAddOn;
6270
            }
6271
6272 1
            $array = \explode(' ', $str);
6273 1
            \array_pop($array);
6274 1
            $new_str = \implode(' ', $array);
6275
6276 1
            if ($new_str === '') {
6277
                return ((string) self::substr($str, 0, $length - 1, $encoding)) . $strAddOn;
6278
            }
6279
        }
6280
6281 3
        return $new_str . $strAddOn;
6282
    }
6283
6284
    /**
6285
     * Returns the longest common prefix between the string and $otherStr.
6286
     *
6287
     * @param string $str      <p>The input sting.</p>
6288
     * @param string $otherStr <p>Second string for comparison.</p>
6289
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6290
     *
6291
     * @return string
6292
     */
6293 10
    public static function str_longest_common_prefix(string $str, string $otherStr, string $encoding = 'UTF-8'): string
6294
    {
6295
        // init
6296 10
        $longestCommonPrefix = '';
6297
6298 10
        if ($encoding === 'UTF-8') {
6299 5
            $maxLength = (int) \min(
6300 5
                \mb_strlen($str),
6301 5
                \mb_strlen($otherStr)
6302
            );
6303
6304 5
            for ($i = 0; $i < $maxLength; ++$i) {
6305 4
                $char = \mb_substr($str, $i, 1);
6306
6307
                if (
6308 4
                    $char !== false
6309
                    &&
6310 4
                    $char === \mb_substr($otherStr, $i, 1)
6311
                ) {
6312 3
                    $longestCommonPrefix .= $char;
6313
                } else {
6314 3
                    break;
6315
                }
6316
            }
6317
        } else {
6318 5
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
6319
6320 5
            $maxLength = (int) \min(
6321 5
                self::strlen($str, $encoding),
6322 5
                self::strlen($otherStr, $encoding)
6323
            );
6324
6325 5
            for ($i = 0; $i < $maxLength; ++$i) {
6326 4
                $char = self::substr($str, $i, 1, $encoding);
6327
6328
                if (
6329 4
                    $char !== false
6330
                    &&
6331 4
                    $char === self::substr($otherStr, $i, 1, $encoding)
6332
                ) {
6333 3
                    $longestCommonPrefix .= $char;
6334
                } else {
6335 3
                    break;
6336
                }
6337
            }
6338
        }
6339
6340 10
        return $longestCommonPrefix;
6341
    }
6342
6343
    /**
6344
     * Returns the longest common substring between the string and $otherStr.
6345
     * In the case of ties, it returns that which occurs first.
6346
     *
6347
     * @param string $str
6348
     * @param string $otherStr <p>Second string for comparison.</p>
6349
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6350
     *
6351
     * @return string string with its $str being the longest common substring
6352
     */
6353 11
    public static function str_longest_common_substring(string $str, string $otherStr, string $encoding = 'UTF-8'): string
6354
    {
6355 11
        if ($str === '' || $otherStr === '') {
6356 2
            return '';
6357
        }
6358
6359
        // Uses dynamic programming to solve
6360
        // http://en.wikipedia.org/wiki/Longest_common_substring_problem
6361
6362 9
        if ($encoding === 'UTF-8') {
6363 4
            $strLength = (int) \mb_strlen($str);
6364 4
            $otherLength = (int) \mb_strlen($otherStr);
6365
        } else {
6366 5
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
6367
6368 5
            $strLength = (int) self::strlen($str, $encoding);
6369 5
            $otherLength = (int) self::strlen($otherStr, $encoding);
6370
        }
6371
6372
        // Return if either string is empty
6373 9
        if ($strLength === 0 || $otherLength === 0) {
6374
            return '';
6375
        }
6376
6377 9
        $len = 0;
6378 9
        $end = 0;
6379 9
        $table = \array_fill(
6380 9
            0,
6381 9
            $strLength + 1,
6382 9
            \array_fill(0, $otherLength + 1, 0)
6383
        );
6384
6385 9
        if ($encoding === 'UTF-8') {
6386 9
            for ($i = 1; $i <= $strLength; ++$i) {
6387 9
                for ($j = 1; $j <= $otherLength; ++$j) {
6388 9
                    $strChar = \mb_substr($str, $i - 1, 1);
6389 9
                    $otherChar = \mb_substr($otherStr, $j - 1, 1);
6390
6391 9
                    if ($strChar === $otherChar) {
6392 8
                        $table[$i][$j] = $table[$i - 1][$j - 1] + 1;
6393 8
                        if ($table[$i][$j] > $len) {
6394 8
                            $len = $table[$i][$j];
6395 8
                            $end = $i;
6396
                        }
6397
                    } else {
6398 9
                        $table[$i][$j] = 0;
6399
                    }
6400
                }
6401
            }
6402
        } else {
6403
            for ($i = 1; $i <= $strLength; ++$i) {
6404
                for ($j = 1; $j <= $otherLength; ++$j) {
6405
                    $strChar = self::substr($str, $i - 1, 1, $encoding);
6406
                    $otherChar = self::substr($otherStr, $j - 1, 1, $encoding);
6407
6408
                    if ($strChar === $otherChar) {
6409
                        $table[$i][$j] = $table[$i - 1][$j - 1] + 1;
6410
                        if ($table[$i][$j] > $len) {
6411
                            $len = $table[$i][$j];
6412
                            $end = $i;
6413
                        }
6414
                    } else {
6415
                        $table[$i][$j] = 0;
6416
                    }
6417
                }
6418
            }
6419
        }
6420
6421 9
        if ($encoding === 'UTF-8') {
6422 9
            return (string) \mb_substr($str, $end - $len, $len);
6423
        }
6424
6425
        return (string) self::substr($str, $end - $len, $len, $encoding);
6426
    }
6427
6428
    /**
6429
     * Returns the longest common suffix between the string and $otherStr.
6430
     *
6431
     * @param string $str
6432
     * @param string $otherStr <p>Second string for comparison.</p>
6433
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6434
     *
6435
     * @return string
6436
     */
6437 10
    public static function str_longest_common_suffix(string $str, string $otherStr, string $encoding = 'UTF-8'): string
6438
    {
6439 10
        if ($str === '' || $otherStr === '') {
6440 2
            return '';
6441
        }
6442
6443 8
        if ($encoding === 'UTF-8') {
6444 4
            $maxLength = (int) \min(
6445 4
                \mb_strlen($str, $encoding),
6446 4
                \mb_strlen($otherStr, $encoding)
6447
            );
6448
6449 4
            $longestCommonSuffix = '';
6450 4
            for ($i = 1; $i <= $maxLength; ++$i) {
6451 4
                $char = \mb_substr($str, -$i, 1);
6452
6453
                if (
6454 4
                    $char !== false
6455
                    &&
6456 4
                    $char === \mb_substr($otherStr, -$i, 1)
6457
                ) {
6458 3
                    $longestCommonSuffix = $char . $longestCommonSuffix;
6459
                } else {
6460 3
                    break;
6461
                }
6462
            }
6463
        } else {
6464 4
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
6465
6466 4
            $maxLength = (int) \min(
6467 4
                self::strlen($str, $encoding),
6468 4
                self::strlen($otherStr, $encoding)
6469
            );
6470
6471 4
            $longestCommonSuffix = '';
6472 4
            for ($i = 1; $i <= $maxLength; ++$i) {
6473 4
                $char = self::substr($str, -$i, 1, $encoding);
6474
6475
                if (
6476 4
                    $char !== false
6477
                    &&
6478 4
                    $char === self::substr($otherStr, -$i, 1, $encoding)
6479
                ) {
6480 3
                    $longestCommonSuffix = $char . $longestCommonSuffix;
6481
                } else {
6482 3
                    break;
6483
                }
6484
            }
6485
        }
6486
6487 8
        return $longestCommonSuffix;
6488
    }
6489
6490
    /**
6491
     * Returns true if $str matches the supplied pattern, false otherwise.
6492
     *
6493
     * @param string $str     <p>The input string.</p>
6494
     * @param string $pattern <p>Regex pattern to match against.</p>
6495
     *
6496
     * @return bool whether or not $str matches the pattern
6497
     */
6498
    public static function str_matches_pattern(string $str, string $pattern): bool
6499
    {
6500
        return (bool) \preg_match('/' . $pattern . '/u', $str);
6501
    }
6502
6503
    /**
6504
     * Returns whether or not a character exists at an index. Offsets may be
6505
     * negative to count from the last character in the string. Implements
6506
     * part of the ArrayAccess interface.
6507
     *
6508
     * @param string $str      <p>The input string.</p>
6509
     * @param int    $offset   <p>The index to check.</p>
6510
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6511
     *
6512
     * @return bool whether or not the index exists
6513
     */
6514 6
    public static function str_offset_exists(string $str, int $offset, string $encoding = 'UTF-8'): bool
6515
    {
6516
        // init
6517 6
        $length = (int) self::strlen($str, $encoding);
6518
6519 6
        if ($offset >= 0) {
6520 3
            return $length > $offset;
6521
        }
6522
6523 3
        return $length >= \abs($offset);
6524
    }
6525
6526
    /**
6527
     * Returns the character at the given index. Offsets may be negative to
6528
     * count from the last character in the string. Implements part of the
6529
     * ArrayAccess interface, and throws an OutOfBoundsException if the index
6530
     * does not exist.
6531
     *
6532
     * @param string $str      <p>The input string.</p>
6533
     * @param int    $index    <p>The <strong>index</strong> from which to retrieve the char.</p>
6534
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6535
     *
6536
     * @throws \OutOfBoundsException if the positive or negative offset does not exist
6537
     *
6538
     * @return string the character at the specified index
6539
     */
6540 2
    public static function str_offset_get(string $str, int $index, string $encoding = 'UTF-8'): string
6541
    {
6542
        // init
6543 2
        $length = (int) self::strlen($str);
6544
6545
        if (
6546 2
            ($index >= 0 && $length <= $index)
6547
            ||
6548 2
            $length < \abs($index)
6549
        ) {
6550 1
            throw new \OutOfBoundsException('No character exists at the index');
6551
        }
6552
6553 1
        return self::char_at($str, $index, $encoding);
6554
    }
6555
6556
    /**
6557
     * Pad a UTF-8 string to given length with another string.
6558
     *
6559
     * @param string     $str        <p>The input string.</p>
6560
     * @param int        $pad_length <p>The length of return string.</p>
6561
     * @param string     $pad_string [optional] <p>String to use for padding the input string.</p>
6562
     * @param int|string $pad_type   [optional] <p>
6563
     *                               Can be <strong>STR_PAD_RIGHT</strong> (default), [or string "right"]<br>
6564
     *                               <strong>STR_PAD_LEFT</strong> [or string "left"] or<br>
6565
     *                               <strong>STR_PAD_BOTH</strong> [or string "both"]
6566
     *                               </p>
6567
     * @param string     $encoding   [optional] <p>Default: 'UTF-8'</p>
6568
     *
6569
     * @return string returns the padded string
6570
     */
6571 41
    public static function str_pad(
6572
        string $str,
6573
        int $pad_length,
6574
        string $pad_string = ' ',
6575
        $pad_type = \STR_PAD_RIGHT,
6576
        string $encoding = 'UTF-8'
6577
    ): string {
6578 41
        if ($pad_length === 0 || $pad_string === '') {
6579 1
            return $str;
6580
        }
6581
6582 41
        if ($pad_type !== (int) $pad_type) {
6583 13
            if ($pad_type === 'left') {
6584 3
                $pad_type = \STR_PAD_LEFT;
6585 10
            } elseif ($pad_type === 'right') {
6586 6
                $pad_type = \STR_PAD_RIGHT;
6587 4
            } elseif ($pad_type === 'both') {
6588 3
                $pad_type = \STR_PAD_BOTH;
6589
            } else {
6590 1
                throw new \InvalidArgumentException(
6591 1
                    'Pad expects $padType to be "STR_PAD_*" or ' . "to be one of 'left', 'right' or 'both'"
6592
                );
6593
            }
6594
        }
6595
6596 40
        if ($encoding === 'UTF-8') {
6597 25
            $str_length = (int) \mb_strlen($str);
6598
6599 25
            if ($pad_length >= $str_length) {
6600
                switch ($pad_type) {
6601 25
                    case \STR_PAD_LEFT:
6602 8
                        $ps_length = (int) \mb_strlen($pad_string);
6603
6604 8
                        $diff = ($pad_length - $str_length);
6605
6606 8
                        $pre = (string) \mb_substr(
6607 8
                            \str_repeat($pad_string, (int) \ceil($diff / $ps_length)),
6608 8
                            0,
6609 8
                            $diff
6610
                        );
6611 8
                        $post = '';
6612
6613 8
                        break;
6614
6615 20
                    case \STR_PAD_BOTH:
6616 14
                        $diff = ($pad_length - $str_length);
6617
6618 14
                        $ps_length_left = (int) \floor($diff / 2);
6619
6620 14
                        $ps_length_right = (int) \ceil($diff / 2);
6621
6622 14
                        $pre = (string) \mb_substr(
6623 14
                            \str_repeat($pad_string, $ps_length_left),
6624 14
                            0,
6625 14
                            $ps_length_left
6626
                        );
6627 14
                        $post = (string) \mb_substr(
6628 14
                            \str_repeat($pad_string, $ps_length_right),
6629 14
                            0,
6630 14
                            $ps_length_right
6631
                        );
6632
6633 14
                        break;
6634
6635 9
                    case \STR_PAD_RIGHT:
6636
                    default:
6637 9
                        $ps_length = (int) \mb_strlen($pad_string);
6638
6639 9
                        $diff = ($pad_length - $str_length);
6640
6641 9
                        $post = (string) \mb_substr(
6642 9
                            \str_repeat($pad_string, (int) \ceil($diff / $ps_length)),
6643 9
                            0,
6644 9
                            $diff
6645
                        );
6646 9
                        $pre = '';
6647
                }
6648
6649 25
                return $pre . $str . $post;
6650
            }
6651
6652 3
            return $str;
6653
        }
6654
6655 15
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
6656
6657 15
        $str_length = (int) self::strlen($str, $encoding);
6658
6659 15
        if ($pad_length >= $str_length) {
6660
            switch ($pad_type) {
6661 14
                case \STR_PAD_LEFT:
6662 5
                    $ps_length = (int) self::strlen($pad_string, $encoding);
6663
6664 5
                    $diff = ($pad_length - $str_length);
6665
6666 5
                    $pre = (string) self::substr(
6667 5
                        \str_repeat($pad_string, (int) \ceil($diff / $ps_length)),
6668 5
                        0,
6669 5
                        $diff,
6670 5
                        $encoding
6671
                    );
6672 5
                    $post = '';
6673
6674 5
                    break;
6675
6676 9
                case \STR_PAD_BOTH:
6677 3
                    $diff = ($pad_length - $str_length);
6678
6679 3
                    $ps_length_left = (int) \floor($diff / 2);
6680
6681 3
                    $ps_length_right = (int) \ceil($diff / 2);
6682
6683 3
                    $pre = (string) self::substr(
6684 3
                        \str_repeat($pad_string, $ps_length_left),
6685 3
                        0,
6686 3
                        $ps_length_left,
6687 3
                        $encoding
6688
                    );
6689 3
                    $post = (string) self::substr(
6690 3
                        \str_repeat($pad_string, $ps_length_right),
6691 3
                        0,
6692 3
                        $ps_length_right,
6693 3
                        $encoding
6694
                    );
6695
6696 3
                    break;
6697
6698 6
                case \STR_PAD_RIGHT:
6699
                default:
6700 6
                    $ps_length = (int) self::strlen($pad_string, $encoding);
6701
6702 6
                    $diff = ($pad_length - $str_length);
6703
6704 6
                    $post = (string) self::substr(
6705 6
                        \str_repeat($pad_string, (int) \ceil($diff / $ps_length)),
6706 6
                        0,
6707 6
                        $diff,
6708 6
                        $encoding
6709
                    );
6710 6
                    $pre = '';
6711
            }
6712
6713 14
            return $pre . $str . $post;
6714
        }
6715
6716 1
        return $str;
6717
    }
6718
6719
    /**
6720
     * Returns a new string of a given length such that both sides of the
6721
     * string are padded. Alias for pad() with a $padType of 'both'.
6722
     *
6723
     * @param string $str
6724
     * @param int    $length   <p>Desired string length after padding.</p>
6725
     * @param string $padStr   [optional] <p>String used to pad, defaults to space. Default: ' '</p>
6726
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6727
     *
6728
     * @return string string with padding applied
6729
     */
6730 11
    public static function str_pad_both(
6731
        string $str,
6732
        int $length,
6733
        string $padStr = ' ',
6734
        string $encoding = 'UTF-8'
6735
    ): string {
6736 11
        return self::str_pad($str, $length, $padStr, \STR_PAD_BOTH, $encoding);
6737
    }
6738
6739
    /**
6740
     * Returns a new string of a given length such that the beginning of the
6741
     * string is padded. Alias for pad() with a $padType of 'left'.
6742
     *
6743
     * @param string $str
6744
     * @param int    $length   <p>Desired string length after padding.</p>
6745
     * @param string $padStr   [optional] <p>String used to pad, defaults to space. Default: ' '</p>
6746
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6747
     *
6748
     * @return string string with left padding
6749
     */
6750 7
    public static function str_pad_left(
6751
        string $str,
6752
        int $length,
6753
        string $padStr = ' ',
6754
        string $encoding = 'UTF-8'
6755
    ): string {
6756 7
        return self::str_pad($str, $length, $padStr, \STR_PAD_LEFT, $encoding);
6757
    }
6758
6759
    /**
6760
     * Returns a new string of a given length such that the end of the string
6761
     * is padded. Alias for pad() with a $padType of 'right'.
6762
     *
6763
     * @param string $str
6764
     * @param int    $length   <p>Desired string length after padding.</p>
6765
     * @param string $padStr   [optional] <p>String used to pad, defaults to space. Default: ' '</p>
6766
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6767
     *
6768
     * @return string string with right padding
6769
     */
6770 7
    public static function str_pad_right(
6771
        string $str,
6772
        int $length,
6773
        string $padStr = ' ',
6774
        string $encoding = 'UTF-8'
6775
    ): string {
6776 7
        return self::str_pad($str, $length, $padStr, \STR_PAD_RIGHT, $encoding);
6777
    }
6778
6779
    /**
6780
     * Repeat a string.
6781
     *
6782
     * @param string $str        <p>
6783
     *                           The string to be repeated.
6784
     *                           </p>
6785
     * @param int    $multiplier <p>
6786
     *                           Number of time the input string should be
6787
     *                           repeated.
6788
     *                           </p>
6789
     *                           <p>
6790
     *                           multiplier has to be greater than or equal to 0.
6791
     *                           If the multiplier is set to 0, the function
6792
     *                           will return an empty string.
6793
     *                           </p>
6794
     *
6795
     * @return string the repeated string
6796
     */
6797 9
    public static function str_repeat(string $str, int $multiplier): string
6798
    {
6799 9
        $str = self::filter($str);
6800
6801 9
        return \str_repeat($str, $multiplier);
6802
    }
6803
6804
    /**
6805
     * INFO: This is only a wrapper for "str_replace()"  -> the original functions is already UTF-8 safe.
6806
     *
6807
     * Replace all occurrences of the search string with the replacement string
6808
     *
6809
     * @see http://php.net/manual/en/function.str-replace.php
6810
     *
6811
     * @param mixed $search  <p>
6812
     *                       The value being searched for, otherwise known as the needle.
6813
     *                       An array may be used to designate multiple needles.
6814
     *                       </p>
6815
     * @param mixed $replace <p>
6816
     *                       The replacement value that replaces found search
6817
     *                       values. An array may be used to designate multiple replacements.
6818
     *                       </p>
6819
     * @param mixed $subject <p>
6820
     *                       The string or array being searched and replaced on,
6821
     *                       otherwise known as the haystack.
6822
     *                       </p>
6823
     *                       <p>
6824
     *                       If subject is an array, then the search and
6825
     *                       replace is performed with every entry of
6826
     *                       subject, and the return value is an array as
6827
     *                       well.
6828
     *                       </p>
6829
     * @param int   $count   [optional] If passed, this will hold the number of matched and replaced needles
6830
     *
6831
     * @return mixed this function returns a string or an array with the replaced values
6832
     */
6833 12
    public static function str_replace(
6834
        $search,
6835
        $replace,
6836
        $subject,
6837
        int &$count = null
6838
    ) {
6839
        /**
6840
         * @psalm-suppress PossiblyNullArgument
6841
         */
6842 12
        return \str_replace(
6843 12
            $search,
6844 12
            $replace,
6845 12
            $subject,
6846 12
            $count
6847
        );
6848
    }
6849
6850
    /**
6851
     * Replaces $search from the beginning of string with $replacement.
6852
     *
6853
     * @param string $str         <p>The input string.</p>
6854
     * @param string $search      <p>The string to search for.</p>
6855
     * @param string $replacement <p>The replacement.</p>
6856
     *
6857
     * @return string string after the replacements
6858
     */
6859 17
    public static function str_replace_beginning(string $str, string $search, string $replacement): string
6860
    {
6861 17
        if ($str === '') {
6862 4
            if ($replacement === '') {
6863 2
                return '';
6864
            }
6865
6866 2
            if ($search === '') {
6867 2
                return $replacement;
6868
            }
6869
        }
6870
6871 13
        if ($search === '') {
6872 2
            return $str . $replacement;
6873
        }
6874
6875 11
        if (\strpos($str, $search) === 0) {
6876 9
            return $replacement . \substr($str, \strlen($search));
6877
        }
6878
6879 2
        return $str;
6880
    }
6881
6882
    /**
6883
     * Replaces $search from the ending of string with $replacement.
6884
     *
6885
     * @param string $str         <p>The input string.</p>
6886
     * @param string $search      <p>The string to search for.</p>
6887
     * @param string $replacement <p>The replacement.</p>
6888
     *
6889
     * @return string string after the replacements
6890
     */
6891 17
    public static function str_replace_ending(string $str, string $search, string $replacement): string
6892
    {
6893 17
        if ($str === '') {
6894 4
            if ($replacement === '') {
6895 2
                return '';
6896
            }
6897
6898 2
            if ($search === '') {
6899 2
                return $replacement;
6900
            }
6901
        }
6902
6903 13
        if ($search === '') {
6904 2
            return $str . $replacement;
6905
        }
6906
6907 11
        if (\strpos($str, $search, \strlen($str) - \strlen($search)) !== false) {
6908 8
            $str = \substr($str, 0, -\strlen($search)) . $replacement;
6909
        }
6910
6911 11
        return $str;
6912
    }
6913
6914
    /**
6915
     * Replace the first "$search"-term with the "$replace"-term.
6916
     *
6917
     * @param string $search
6918
     * @param string $replace
6919
     * @param string $subject
6920
     *
6921
     * @return string
6922
     *
6923
     * @psalm-suppress InvalidReturnType
6924
     */
6925 2
    public static function str_replace_first(string $search, string $replace, string $subject): string
6926
    {
6927 2
        $pos = self::strpos($subject, $search);
6928
6929 2
        if ($pos !== false) {
6930
            /**
6931
             * @psalm-suppress InvalidReturnStatement
6932
             */
6933 2
            return self::substr_replace(
0 ignored issues
show
Bug Best Practice introduced by
The expression return self::substr_repl...)self::strlen($search)) could return the type string[] which is incompatible with the type-hinted return string. Consider adding an additional type-check to rule them out.
Loading history...
6934 2
                $subject,
6935 2
                $replace,
6936 2
                $pos,
6937 2
                (int) self::strlen($search)
6938
            );
6939
        }
6940
6941 2
        return $subject;
6942
    }
6943
6944
    /**
6945
     * Replace the last "$search"-term with the "$replace"-term.
6946
     *
6947
     * @param string $search
6948
     * @param string $replace
6949
     * @param string $subject
6950
     *
6951
     * @return string
6952
     *
6953
     * @psalm-suppress InvalidReturnType
6954
     */
6955 2
    public static function str_replace_last(
6956
        string $search,
6957
        string $replace,
6958
        string $subject
6959
    ): string {
6960 2
        $pos = self::strrpos($subject, $search);
6961 2
        if ($pos !== false) {
6962
            /**
6963
             * @psalm-suppress InvalidReturnStatement
6964
             */
6965 2
            return self::substr_replace(
0 ignored issues
show
Bug Best Practice introduced by
The expression return self::substr_repl...)self::strlen($search)) could return the type string[] which is incompatible with the type-hinted return string. Consider adding an additional type-check to rule them out.
Loading history...
6966 2
                $subject,
6967 2
                $replace,
6968 2
                $pos,
6969 2
                (int) self::strlen($search)
6970
            );
6971
        }
6972
6973 2
        return $subject;
6974
    }
6975
6976
    /**
6977
     * Shuffles all the characters in the string.
6978
     *
6979
     * PS: uses random algorithm which is weak for cryptography purposes
6980
     *
6981
     * @param string $str      <p>The input string</p>
6982
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
6983
     *
6984
     * @return string the shuffled string
6985
     */
6986 5
    public static function str_shuffle(string $str, string $encoding = 'UTF-8'): string
6987
    {
6988 5
        if ($encoding === 'UTF-8') {
6989 5
            $indexes = \range(0, (int) \mb_strlen($str) - 1);
6990
            /** @noinspection NonSecureShuffleUsageInspection */
6991 5
            \shuffle($indexes);
6992
6993
            // init
6994 5
            $shuffledStr = '';
6995
6996 5
            foreach ($indexes as &$i) {
6997 5
                $tmpSubStr = \mb_substr($str, $i, 1);
6998 5
                if ($tmpSubStr !== false) {
6999 5
                    $shuffledStr .= $tmpSubStr;
7000
                }
7001
            }
7002
        } else {
7003
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
7004
7005
            $indexes = \range(0, (int) self::strlen($str, $encoding) - 1);
7006
            /** @noinspection NonSecureShuffleUsageInspection */
7007
            \shuffle($indexes);
7008
7009
            // init
7010
            $shuffledStr = '';
7011
7012
            foreach ($indexes as &$i) {
7013
                $tmpSubStr = self::substr($str, $i, 1, $encoding);
7014
                if ($tmpSubStr !== false) {
7015
                    $shuffledStr .= $tmpSubStr;
7016
                }
7017
            }
7018
        }
7019
7020 5
        return $shuffledStr;
7021
    }
7022
7023
    /**
7024
     * Returns the substring beginning at $start, and up to, but not including
7025
     * the index specified by $end. If $end is omitted, the function extracts
7026
     * the remaining string. If $end is negative, it is computed from the end
7027
     * of the string.
7028
     *
7029
     * @param string $str
7030
     * @param int    $start    <p>Initial index from which to begin extraction.</p>
7031
     * @param int    $end      [optional] <p>Index at which to end extraction. Default: null</p>
7032
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
7033
     *
7034
     * @return false|string
7035
     *                      <p>The extracted substring.</p><p>If <i>str</i> is shorter than <i>start</i>
7036
     *                      characters long, <b>FALSE</b> will be returned.
7037
     */
7038 18
    public static function str_slice(
7039
        string $str,
7040
        int $start,
7041
        int $end = null,
7042
        string $encoding = 'UTF-8'
7043
    ) {
7044 18
        if ($encoding === 'UTF-8') {
7045 7
            if ($end === null) {
7046 1
                $length = (int) \mb_strlen($str);
7047 6
            } elseif ($end >= 0 && $end <= $start) {
7048 2
                return '';
7049 4
            } elseif ($end < 0) {
7050 1
                $length = (int) \mb_strlen($str) + $end - $start;
7051
            } else {
7052 3
                $length = $end - $start;
7053
            }
7054
7055 5
            return \mb_substr($str, $start, $length);
7056
        }
7057
7058 11
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
7059
7060 11
        if ($end === null) {
7061 5
            $length = (int) self::strlen($str, $encoding);
7062 6
        } elseif ($end >= 0 && $end <= $start) {
7063 2
            return '';
7064 4
        } elseif ($end < 0) {
7065 1
            $length = (int) self::strlen($str, $encoding) + $end - $start;
7066
        } else {
7067 3
            $length = $end - $start;
7068
        }
7069
7070 9
        return self::substr($str, $start, $length, $encoding);
7071
    }
7072
7073
    /**
7074
     * Convert a string to e.g.: "snake_case"
7075
     *
7076
     * @param string $str
7077
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
7078
     *
7079
     * @return string string in snake_case
7080
     */
7081 20
    public static function str_snakeize(string $str, string $encoding = 'UTF-8'): string
7082
    {
7083 20
        if ($str === '') {
7084
            return '';
7085
        }
7086
7087 20
        $str = \str_replace(
7088 20
            '-',
7089 20
            '_',
7090 20
            self::normalize_whitespace($str)
7091
        );
7092
7093 20
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
7094 17
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
7095
        }
7096
7097 20
        $str = (string) \preg_replace_callback(
7098 20
            '/([\d|\p{Lu}])/u',
7099
            /**
7100
             * @param string[] $matches
7101
             *
7102
             * @return string
7103
             */
7104
            static function (array $matches) use ($encoding): string {
7105 9
                $match = $matches[1];
7106 9
                $matchInt = (int) $match;
7107
7108 9
                if ((string) $matchInt === $match) {
7109 4
                    return '_' . $match . '_';
7110
                }
7111
7112 5
                if ($encoding === 'UTF-8') {
7113 5
                    return '_' . \mb_strtolower($match);
7114
                }
7115
7116
                return '_' . self::strtolower($match, $encoding);
7117 20
            },
7118 20
            $str
7119
        );
7120
7121 20
        $str = (string) \preg_replace(
7122
            [
7123 20
                '/\s+/u',        // convert spaces to "_"
7124
                '/^\s+|\s+$/u',  // trim leading & trailing spaces
7125
                '/_+/',         // remove double "_"
7126
            ],
7127
            [
7128 20
                '_',
7129
                '',
7130
                '_',
7131
            ],
7132 20
            $str
7133
        );
7134
7135 20
        return \trim(\trim($str, '_')); // trim leading & trailing "_" + whitespace
7136
    }
7137
7138
    /**
7139
     * Sort all characters according to code points.
7140
     *
7141
     * @param string $str    <p>A UTF-8 string.</p>
7142
     * @param bool   $unique <p>Sort unique. If <strong>true</strong>, repeated characters are ignored.</p>
7143
     * @param bool   $desc   <p>If <strong>true</strong>, will sort characters in reverse code point order.</p>
7144
     *
7145
     * @return string string of sorted characters
7146
     */
7147 2
    public static function str_sort(string $str, bool $unique = false, bool $desc = false): string
7148
    {
7149 2
        $array = self::codepoints($str);
7150
7151 2
        if ($unique) {
7152 2
            $array = \array_flip(\array_flip($array));
7153
        }
7154
7155 2
        if ($desc) {
7156 2
            \arsort($array);
0 ignored issues
show
Bug introduced by
It seems like $array can also be of type null; however, parameter $array of arsort() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

7156
            \arsort(/** @scrutinizer ignore-type */ $array);
Loading history...
7157
        } else {
7158 2
            \asort($array);
0 ignored issues
show
Bug introduced by
It seems like $array can also be of type null; however, parameter $array of asort() does only seem to accept array, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

7158
            \asort(/** @scrutinizer ignore-type */ $array);
Loading history...
7159
        }
7160
7161 2
        return self::string($array);
7162
    }
7163
7164
    /**
7165
     * Convert a string to an array of Unicode characters.
7166
     *
7167
     * @param int|int[]|string|string[] $str                <p>The string to split into array.</p>
7168
     * @param int                       $length             [optional] <p>Max character length of each array
7169
     *                                                      element.</p>
7170
     * @param bool                      $cleanUtf8          [optional] <p>Remove non UTF-8 chars from the string.</p>
7171
     * @param bool                      $tryToUseMbFunction [optional] <p>Set to false, if you don't want to use
7172
     *                                                      "mb_substr"</p>
7173
     *
7174
     * @return array
7175
     *               <p>An array containing chunks of the input.</p>
7176
     */
7177 87
    public static function str_split(
7178
        $str,
7179
        int $length = 1,
7180
        bool $cleanUtf8 = false,
7181
        bool $tryToUseMbFunction = true
7182
    ): array {
7183 87
        if ($length <= 0) {
7184 3
            return [];
7185
        }
7186
7187 86
        if (\is_array($str) === true) {
7188 2
            foreach ($str as $k => &$v) {
7189 2
                $v = self::str_split(
7190 2
                    $v,
7191 2
                    $length,
7192 2
                    $cleanUtf8,
7193 2
                    $tryToUseMbFunction
7194
                );
7195
            }
7196
7197 2
            return $str;
7198
        }
7199
7200
        // init
7201 86
        $str = (string) $str;
7202
7203 86
        if ($str === '') {
7204 13
            return [];
7205
        }
7206
7207 83
        if ($cleanUtf8 === true) {
7208 19
            $str = self::clean($str);
7209
        }
7210
7211
        if (
7212 83
            $tryToUseMbFunction === true
7213
            &&
7214 83
            self::$SUPPORT['mbstring'] === true
7215
        ) {
7216 79
            $iMax = \mb_strlen($str);
7217 79
            if ($iMax <= 127) {
7218 73
                $ret = [];
7219 73
                for ($i = 0; $i < $iMax; ++$i) {
7220 73
                    $ret[] = \mb_substr($str, $i, 1);
7221
                }
7222
            } else {
7223 15
                $retArray = [];
7224 15
                \preg_match_all('/./us', $str, $retArray);
7225 79
                $ret = $retArray[0] ?? [];
7226
            }
7227 23
        } elseif (self::$SUPPORT['pcre_utf8'] === true) {
7228 17
            $retArray = [];
7229 17
            \preg_match_all('/./us', $str, $retArray);
7230 17
            $ret = $retArray[0] ?? [];
7231
        } else {
7232
7233
            // fallback
7234
7235 8
            $ret = [];
7236 8
            $len = \strlen($str);
7237
7238
            /** @noinspection ForeachInvariantsInspection */
7239 8
            for ($i = 0; $i < $len; ++$i) {
7240 8
                if (($str[$i] & "\x80") === "\x00") {
7241 8
                    $ret[] = $str[$i];
7242
                } elseif (
7243 8
                    isset($str[$i + 1])
7244
                    &&
7245 8
                    ($str[$i] & "\xE0") === "\xC0"
7246
                ) {
7247 4
                    if (($str[$i + 1] & "\xC0") === "\x80") {
7248 4
                        $ret[] = $str[$i] . $str[$i + 1];
7249
7250 4
                        ++$i;
7251
                    }
7252
                } elseif (
7253 6
                    isset($str[$i + 2])
7254
                    &&
7255 6
                    ($str[$i] & "\xF0") === "\xE0"
7256
                ) {
7257
                    if (
7258 6
                        ($str[$i + 1] & "\xC0") === "\x80"
7259
                        &&
7260 6
                        ($str[$i + 2] & "\xC0") === "\x80"
7261
                    ) {
7262 6
                        $ret[] = $str[$i] . $str[$i + 1] . $str[$i + 2];
7263
7264 6
                        $i += 2;
7265
                    }
7266
                } elseif (
7267
                    isset($str[$i + 3])
7268
                    &&
7269
                    ($str[$i] & "\xF8") === "\xF0"
7270
                ) {
7271
                    if (
7272
                        ($str[$i + 1] & "\xC0") === "\x80"
7273
                        &&
7274
                        ($str[$i + 2] & "\xC0") === "\x80"
7275
                        &&
7276
                        ($str[$i + 3] & "\xC0") === "\x80"
7277
                    ) {
7278
                        $ret[] = $str[$i] . $str[$i + 1] . $str[$i + 2] . $str[$i + 3];
7279
7280
                        $i += 3;
7281
                    }
7282
                }
7283
            }
7284
        }
7285
7286 83
        if ($length > 1) {
7287 11
            $ret = \array_chunk($ret, $length);
7288
7289 11
            return \array_map(
7290
                static function (array &$item): string {
7291 11
                    return \implode('', $item);
7292 11
                },
7293 11
                $ret
7294
            );
7295
        }
7296
7297 76
        if (isset($ret[0]) && $ret[0] === '') {
7298
            return [];
7299
        }
7300
7301 76
        return $ret;
7302
    }
7303
7304
    /**
7305
     * Splits the string with the provided regular expression, returning an
7306
     * array of Stringy objects. An optional integer $limit will truncate the
7307
     * results.
7308
     *
7309
     * @param string $str
7310
     * @param string $pattern <p>The regex with which to split the string.</p>
7311
     * @param int    $limit   [optional] <p>Maximum number of results to return. Default: -1 === no limit</p>
7312
     *
7313
     * @return string[] an array of strings
7314
     */
7315 16
    public static function str_split_pattern(string $str, string $pattern, int $limit = -1): array
7316
    {
7317 16
        if ($limit === 0) {
7318 2
            return [];
7319
        }
7320
7321 14
        if ($pattern === '') {
7322 1
            return [$str];
7323
        }
7324
7325 13
        if (self::$SUPPORT['mbstring'] === true) {
7326 13
            if ($limit >= 0) {
7327
                /** @noinspection PhpComposerExtensionStubsInspection */
7328 8
                $resultTmp = \mb_split($pattern, $str);
7329
7330 8
                $result = [];
7331 8
                foreach ($resultTmp as $itemTmp) {
7332 8
                    if ($limit === 0) {
7333 4
                        break;
7334
                    }
7335 8
                    --$limit;
7336
7337 8
                    $result[] = $itemTmp;
7338
                }
7339
7340 8
                return $result;
7341
            }
7342
7343
            /** @noinspection PhpComposerExtensionStubsInspection */
7344 5
            return \mb_split($pattern, $str);
7345
        }
7346
7347
        if ($limit > 0) {
7348
            ++$limit;
7349
        } else {
7350
            $limit = -1;
7351
        }
7352
7353
        $array = \preg_split('/' . \preg_quote($pattern, '/') . '/u', $str, $limit);
7354
7355
        if ($array === false) {
7356
            return [];
7357
        }
7358
7359
        if ($limit > 0 && \count($array) === $limit) {
7360
            \array_pop($array);
7361
        }
7362
7363
        return $array;
7364
    }
7365
7366
    /**
7367
     * Check if the string starts with the given substring.
7368
     *
7369
     * @param string $haystack <p>The string to search in.</p>
7370
     * @param string $needle   <p>The substring to search for.</p>
7371
     *
7372
     * @return bool
7373
     */
7374 19
    public static function str_starts_with(string $haystack, string $needle): bool
7375
    {
7376 19
        if ($needle === '') {
7377 2
            return true;
7378
        }
7379
7380 19
        if ($haystack === '') {
7381
            return false;
7382
        }
7383
7384 19
        return \strpos($haystack, $needle) === 0;
7385
    }
7386
7387
    /**
7388
     * Returns true if the string begins with any of $substrings, false otherwise.
7389
     *
7390
     * - case-sensitive
7391
     *
7392
     * @param string $str        <p>The input string.</p>
7393
     * @param array  $substrings <p>Substrings to look for.</p>
7394
     *
7395
     * @return bool whether or not $str starts with $substring
7396
     */
7397 8
    public static function str_starts_with_any(string $str, array $substrings): bool
7398
    {
7399 8
        if ($str === '') {
7400
            return false;
7401
        }
7402
7403 8
        if ($substrings === []) {
7404
            return false;
7405
        }
7406
7407 8
        foreach ($substrings as &$substring) {
7408 8
            if (self::str_starts_with($str, $substring)) {
7409 8
                return true;
7410
            }
7411
        }
7412
7413 6
        return false;
7414
    }
7415
7416
    /**
7417
     * Gets the substring after the first occurrence of a separator.
7418
     *
7419
     * @param string $str       <p>The input string.</p>
7420
     * @param string $separator <p>The string separator.</p>
7421
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
7422
     *
7423
     * @return string
7424
     */
7425 1
    public static function str_substr_after_first_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
7426
    {
7427 1
        if ($separator === '' || $str === '') {
7428 1
            return '';
7429
        }
7430
7431 1
        if ($encoding === 'UTF-8') {
7432 1
            $offset = \mb_strpos($str, $separator);
7433 1
            if ($offset === false) {
7434 1
                return '';
7435
            }
7436
7437 1
            return (string) \mb_substr(
7438 1
                $str,
7439 1
                $offset + (int) \mb_strlen($separator)
7440
            );
7441
        }
7442
7443
        $offset = self::strpos($str, $separator, 0, $encoding);
7444
        if ($offset === false) {
7445
            return '';
7446
        }
7447
7448
        return (string) \mb_substr(
7449
            $str,
7450
            $offset + (int) self::strlen($separator, $encoding),
7451
            null,
7452
            $encoding
7453
        );
7454
    }
7455
7456
    /**
7457
     * Gets the substring after the last occurrence of a separator.
7458
     *
7459
     * @param string $str       <p>The input string.</p>
7460
     * @param string $separator <p>The string separator.</p>
7461
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
7462
     *
7463
     * @return string
7464
     */
7465 1
    public static function str_substr_after_last_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
7466
    {
7467 1
        if ($separator === '' || $str === '') {
7468 1
            return '';
7469
        }
7470
7471 1
        if ($encoding === 'UTF-8') {
7472 1
            $offset = \mb_strrpos($str, $separator);
7473 1
            if ($offset === false) {
7474 1
                return '';
7475
            }
7476
7477 1
            return (string) \mb_substr(
7478 1
                $str,
7479 1
                $offset + (int) \mb_strlen($separator)
7480
            );
7481
        }
7482
7483
        $offset = self::strrpos($str, $separator, 0, $encoding);
7484
        if ($offset === false) {
7485
            return '';
7486
        }
7487
7488
        return (string) self::substr(
7489
            $str,
7490
            $offset + (int) self::strlen($separator, $encoding),
7491
            null,
7492
            $encoding
7493
        );
7494
    }
7495
7496
    /**
7497
     * Gets the substring before the first occurrence of a separator.
7498
     *
7499
     * @param string $str       <p>The input string.</p>
7500
     * @param string $separator <p>The string separator.</p>
7501
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
7502
     *
7503
     * @return string
7504
     */
7505 1
    public static function str_substr_before_first_separator(
7506
        string $str,
7507
        string $separator,
7508
        string $encoding = 'UTF-8'
7509
    ): string {
7510 1
        if ($separator === '' || $str === '') {
7511 1
            return '';
7512
        }
7513
7514 1
        if ($encoding === 'UTF-8') {
7515 1
            $offset = \mb_strpos($str, $separator);
7516 1
            if ($offset === false) {
7517 1
                return '';
7518
            }
7519
7520 1
            return (string) \mb_substr(
7521 1
                $str,
7522 1
                0,
7523 1
                $offset
7524
            );
7525
        }
7526
7527
        $offset = self::strpos($str, $separator, 0, $encoding);
7528
        if ($offset === false) {
7529
            return '';
7530
        }
7531
7532
        return (string) self::substr(
7533
            $str,
7534
            0,
7535
            $offset,
7536
            $encoding
7537
        );
7538
    }
7539
7540
    /**
7541
     * Gets the substring before the last occurrence of a separator.
7542
     *
7543
     * @param string $str       <p>The input string.</p>
7544
     * @param string $separator <p>The string separator.</p>
7545
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
7546
     *
7547
     * @return string
7548
     */
7549 1
    public static function str_substr_before_last_separator(string $str, string $separator, string $encoding = 'UTF-8'): string
7550
    {
7551 1
        if ($separator === '' || $str === '') {
7552 1
            return '';
7553
        }
7554
7555 1
        if ($encoding === 'UTF-8') {
7556 1
            $offset = \mb_strrpos($str, $separator);
7557 1
            if ($offset === false) {
7558 1
                return '';
7559
            }
7560
7561 1
            return (string) \mb_substr(
7562 1
                $str,
7563 1
                0,
7564 1
                $offset
7565
            );
7566
        }
7567
7568
        $offset = self::strrpos($str, $separator, 0, $encoding);
7569
        if ($offset === false) {
7570
            return '';
7571
        }
7572
7573
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
7574
7575
        return (string) self::substr(
7576
            $str,
7577
            0,
7578
            $offset,
7579
            $encoding
7580
        );
7581
    }
7582
7583
    /**
7584
     * Gets the substring after (or before via "$beforeNeedle") the first occurrence of the "$needle".
7585
     *
7586
     * @param string $str          <p>The input string.</p>
7587
     * @param string $needle       <p>The string to look for.</p>
7588
     * @param bool   $beforeNeedle [optional] <p>Default: false</p>
7589
     * @param string $encoding     [optional] <p>Default: 'UTF-8'</p>
7590
     *
7591
     * @return string
7592
     */
7593 2
    public static function str_substr_first(
7594
        string $str,
7595
        string $needle,
7596
        bool $beforeNeedle = false,
7597
        string $encoding = 'UTF-8'
7598
    ): string {
7599 2
        if ($str === '' || $needle === '') {
7600 2
            return '';
7601
        }
7602
7603 2
        if ($encoding === 'UTF-8') {
7604 2
            if ($beforeNeedle === true) {
7605 1
                $part = \mb_strstr(
7606 1
                    $str,
7607 1
                    $needle,
7608 1
                    $beforeNeedle
7609
                );
7610
            } else {
7611 1
                $part = \mb_strstr(
7612 1
                    $str,
7613 2
                    $needle
7614
                );
7615
            }
7616
        } else {
7617
            $part = self::strstr(
7618
                $str,
7619
                $needle,
7620
                $beforeNeedle,
7621
                $encoding
7622
            );
7623
        }
7624
7625 2
        return $part === false ? '' : $part;
7626
    }
7627
7628
    /**
7629
     * Gets the substring after (or before via "$beforeNeedle") the last occurrence of the "$needle".
7630
     *
7631
     * @param string $str          <p>The input string.</p>
7632
     * @param string $needle       <p>The string to look for.</p>
7633
     * @param bool   $beforeNeedle [optional] <p>Default: false</p>
7634
     * @param string $encoding     [optional] <p>Default: 'UTF-8'</p>
7635
     *
7636
     * @return string
7637
     */
7638 2
    public static function str_substr_last(
7639
        string $str,
7640
        string $needle,
7641
        bool $beforeNeedle = false,
7642
        string $encoding = 'UTF-8'
7643
    ): string {
7644 2
        if ($str === '' || $needle === '') {
7645 2
            return '';
7646
        }
7647
7648 2
        if ($encoding === 'UTF-8') {
7649 2
            if ($beforeNeedle === true) {
7650 1
                $part = \mb_strrchr(
7651 1
                    $str,
7652 1
                    $needle,
7653 1
                    $beforeNeedle
7654
                );
7655
            } else {
7656 1
                $part = \mb_strrchr(
7657 1
                    $str,
7658 2
                    $needle
7659
                );
7660
            }
7661
        } else {
7662
            $part = self::strrchr(
7663
                $str,
7664
                $needle,
7665
                $beforeNeedle,
7666
                $encoding
7667
            );
7668
        }
7669
7670 2
        return $part === false ? '' : $part;
7671
    }
7672
7673
    /**
7674
     * Surrounds $str with the given substring.
7675
     *
7676
     * @param string $str
7677
     * @param string $substring <p>The substring to add to both sides.</P>
7678
     *
7679
     * @return string string with the substring both prepended and appended
7680
     */
7681 5
    public static function str_surround(string $str, string $substring): string
7682
    {
7683 5
        return $substring . $str . $substring;
7684
    }
7685
7686
    /**
7687
     * Returns a trimmed string with the first letter of each word capitalized.
7688
     * Also accepts an array, $ignore, allowing you to list words not to be
7689
     * capitalized.
7690
     *
7691
     * @param string              $str
7692
     * @param array|string[]|null $ignore                [optional] <p>An array of words not to capitalize or null.
7693
     *                                                   Default: null</p>
7694
     * @param string              $encoding              [optional] <p>Default: 'UTF-8'</p>
7695
     * @param bool                $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
7696
     * @param string|null         $lang                  [optional] <p>Set the language for special cases: az, el, lt,
7697
     *                                                   tr</p>
7698
     * @param bool                $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ ->
7699
     *                                                   ß</p>
7700
     * @param bool                $useTrimFirst          [optional] <p>true === trim the input string, first</p>
7701
     *
7702
     * @return string the titleized string
7703
     */
7704 5
    public static function str_titleize(
7705
        string $str,
7706
        array $ignore = null,
7707
        string $encoding = 'UTF-8',
7708
        bool $cleanUtf8 = false,
7709
        string $lang = null,
7710
        bool $tryToKeepStringLength = false,
7711
        bool $useTrimFirst = true
7712
    ): string {
7713 5
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
7714 4
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
7715
        }
7716
7717 5
        if ($useTrimFirst === true) {
7718 5
            $str = \trim($str);
7719
        }
7720
7721 5
        if ($cleanUtf8 === true) {
7722
            $str = self::clean($str);
7723
        }
7724
7725 5
        $useMbFunction = $lang === null && $tryToKeepStringLength === false;
7726
7727 5
        return (string) \preg_replace_callback(
7728 5
            '/([\S]+)/u',
7729
            static function (array $match) use ($tryToKeepStringLength, $lang, $ignore, $useMbFunction, $encoding): string {
7730 5
                if ($ignore !== null && \in_array($match[0], $ignore, true)) {
7731 2
                    return $match[0];
7732
                }
7733
7734 5
                if ($useMbFunction === true) {
7735 5
                    if ($encoding === 'UTF-8') {
7736 5
                        return \mb_strtoupper(\mb_substr($match[0], 0, 1))
7737 5
                               . \mb_strtolower(\mb_substr($match[0], 1));
7738
                    }
7739
7740
                    return \mb_strtoupper(\mb_substr($match[0], 0, 1, $encoding), $encoding)
7741
                           . \mb_strtolower(\mb_substr($match[0], 1, null, $encoding), $encoding);
7742
                }
7743
7744
                return self::ucfirst(
7745
                    self::strtolower(
7746
                        $match[0],
7747
                        $encoding,
7748
                        false,
7749
                        $lang,
7750
                        $tryToKeepStringLength
7751
                    ),
7752
                    $encoding,
7753
                    false,
7754
                    $lang,
7755
                    $tryToKeepStringLength
7756
                );
7757 5
            },
7758 5
            $str
7759
        );
7760
    }
7761
7762
    /**
7763
     * Returns a trimmed string in proper title case.
7764
     *
7765
     * Also accepts an array, $ignore, allowing you to list words not to be
7766
     * capitalized.
7767
     *
7768
     * Adapted from John Gruber's script.
7769
     *
7770
     * @see https://gist.github.com/gruber/9f9e8650d68b13ce4d78
7771
     *
7772
     * @param string $str
7773
     * @param array  $ignore   <p>An array of words not to capitalize.</p>
7774
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
7775
     *
7776
     * @return string the titleized string
7777
     */
7778 35
    public static function str_titleize_for_humans(string $str, array $ignore = [], string $encoding = 'UTF-8'): string
7779
    {
7780 35
        $smallWords = \array_merge(
7781
            [
7782 35
                '(?<!q&)a',
7783
                'an',
7784
                'and',
7785
                'as',
7786
                'at(?!&t)',
7787
                'but',
7788
                'by',
7789
                'en',
7790
                'for',
7791
                'if',
7792
                'in',
7793
                'of',
7794
                'on',
7795
                'or',
7796
                'the',
7797
                'to',
7798
                'v[.]?',
7799
                'via',
7800
                'vs[.]?',
7801
            ],
7802 35
            $ignore
7803
        );
7804
7805 35
        $smallWordsRx = \implode('|', $smallWords);
7806 35
        $apostropheRx = '(?x: [\'’] [[:lower:]]* )?';
7807
7808 35
        $str = \trim($str);
7809
7810 35
        if (self::has_lowercase($str) === false) {
7811 2
            $str = self::strtolower($str, $encoding);
7812
        }
7813
7814
        // the main substitutions
7815 35
        $str = (string) \preg_replace_callback(
7816
            '~\b (_*) (?:                                                              # 1. Leading underscore and
7817
                        ( (?<=[ ][/\\\\]) [[:alpha:]]+ [-_[:alpha:]/\\\\]+ |              # 2. file path or 
7818 35
                          [-_[:alpha:]]+ [@.:] [-_[:alpha:]@.:/]+ ' . $apostropheRx . ' ) #    URL, domain, or email
7819
                        |
7820 35
                        ( (?i: ' . $smallWordsRx . ' ) ' . $apostropheRx . ' )            # 3. or small word (case-insensitive)
7821
                        |
7822 35
                        ( [[:alpha:]] [[:lower:]\'’()\[\]{}]* ' . $apostropheRx . ' )     # 4. or word w/o internal caps
7823
                        |
7824 35
                        ( [[:alpha:]] [[:alpha:]\'’()\[\]{}]* ' . $apostropheRx . ' )     # 5. or some other word
7825
                      ) (_*) \b                                                           # 6. With trailing underscore
7826
                    ~ux',
7827
            /**
7828
             * @param string[] $matches
7829
             *
7830
             * @return string
7831
             */
7832
            static function (array $matches) use ($encoding): string {
7833
                // preserve leading underscore
7834 35
                $str = $matches[1];
7835 35
                if ($matches[2]) {
7836
                    // preserve URLs, domains, emails and file paths
7837 5
                    $str .= $matches[2];
7838 35
                } elseif ($matches[3]) {
7839
                    // lower-case small words
7840 25
                    $str .= self::strtolower($matches[3], $encoding);
7841 35
                } elseif ($matches[4]) {
7842
                    // capitalize word w/o internal caps
7843 34
                    $str .= static::str_upper_first($matches[4], $encoding);
7844
                } else {
7845
                    // preserve other kinds of word (iPhone)
7846 7
                    $str .= $matches[5];
7847
                }
7848
                // Preserve trailing underscore
7849 35
                $str .= $matches[6];
7850
7851 35
                return $str;
7852 35
            },
7853 35
            $str
7854
        );
7855
7856
        // Exceptions for small words: capitalize at start of title...
7857 35
        $str = (string) \preg_replace_callback(
7858
            '~(  \A [[:punct:]]*                # start of title...
7859
                      |  [:.;?!][ ]+               # or of subsentence...
7860
                      |  [ ][\'"“‘(\[][ ]* )       # or of inserted subphrase...
7861 35
                      ( ' . $smallWordsRx . ' ) \b # ...followed by small word
7862
                     ~uxi',
7863
            /**
7864
             * @param string[] $matches
7865
             *
7866
             * @return string
7867
             */
7868
            static function (array $matches) use ($encoding): string {
7869 11
                return $matches[1] . static::str_upper_first($matches[2], $encoding);
7870 35
            },
7871 35
            $str
7872
        );
7873
7874
        // ...and end of title
7875 35
        $str = (string) \preg_replace_callback(
7876 35
            '~\b ( ' . $smallWordsRx . ' ) # small word...
7877
                      (?= [[:punct:]]* \Z     # ...at the end of the title...
7878
                      |   [\'"’”)\]] [ ] )    # ...or of an inserted subphrase?
7879
                     ~uxi',
7880
            /**
7881
             * @param string[] $matches
7882
             *
7883
             * @return string
7884
             */
7885
            static function (array $matches) use ($encoding): string {
7886 3
                return static::str_upper_first($matches[1], $encoding);
7887 35
            },
7888 35
            $str
7889
        );
7890
7891
        // Exceptions for small words in hyphenated compound words.
7892
        // e.g. "in-flight" -> In-Flight
7893 35
        $str = (string) \preg_replace_callback(
7894
            '~\b
7895
                        (?<! -)                   # Negative lookbehind for a hyphen; we do not want to match man-in-the-middle but do want (in-flight)
7896 35
                        ( ' . $smallWordsRx . ' )
7897
                        (?= -[[:alpha:]]+)        # lookahead for "-someword"
7898
                       ~uxi',
7899
            /**
7900
             * @param string[] $matches
7901
             *
7902
             * @return string
7903
             */
7904
            static function (array $matches) use ($encoding): string {
7905
                return static::str_upper_first($matches[1], $encoding);
7906 35
            },
7907 35
            $str
7908
        );
7909
7910
        // e.g. "Stand-in" -> "Stand-In" (Stand is already capped at this point)
7911 35
        $str = (string) \preg_replace_callback(
7912
            '~\b
7913
                      (?<!…)                    # Negative lookbehind for a hyphen; we do not want to match man-in-the-middle but do want (stand-in)
7914
                      ( [[:alpha:]]+- )         # $1 = first word and hyphen, should already be properly capped
7915 35
                      ( ' . $smallWordsRx . ' ) # ...followed by small word
7916
                      (?!	- )                   # Negative lookahead for another -
7917
                     ~uxi',
7918
            /**
7919
             * @param string[] $matches
7920
             *
7921
             * @return string
7922
             */
7923
            static function (array $matches) use ($encoding): string {
7924
                return $matches[1] . static::str_upper_first($matches[2], $encoding);
7925 35
            },
7926 35
            $str
7927
        );
7928
7929 35
        return $str;
7930
    }
7931
7932
    /**
7933
     * Get a binary representation of a specific string.
7934
     *
7935
     * @param string $str <p>The input string.</p>
7936
     *
7937
     * @return string
7938
     */
7939 2
    public static function str_to_binary(string $str): string
7940
    {
7941 2
        $value = \unpack('H*', $str);
7942
7943 2
        return \base_convert($value[1], 16, 2);
7944
    }
7945
7946
    /**
7947
     * @param string   $str
7948
     * @param bool     $removeEmptyValues <p>Remove empty values.</p>
7949
     * @param int|null $removeShortValues <p>The min. string length or null to disable</p>
7950
     *
7951
     * @return string[]
7952
     */
7953 17
    public static function str_to_lines(string $str, bool $removeEmptyValues = false, int $removeShortValues = null): array
7954
    {
7955 17
        if ($str === '') {
7956 1
            return $removeEmptyValues === true ? [] : [''];
7957
        }
7958
7959 16
        if (self::$SUPPORT['mbstring'] === true) {
7960
            /** @noinspection PhpComposerExtensionStubsInspection */
7961 16
            $return = \mb_split('[\r\n]{1,2}', $str);
7962
        } else {
7963
            $return = \preg_split("/[\r\n]{1,2}/u", $str);
7964
        }
7965
7966 16
        if ($return === false) {
7967
            return $removeEmptyValues === true ? [] : [''];
7968
        }
7969
7970
        if (
7971 16
            $removeShortValues === null
7972
            &&
7973 16
            $removeEmptyValues === false
7974
        ) {
7975 16
            return $return;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $return returns an array which contains values of type array which are incompatible with the documented value type string.
Loading history...
7976
        }
7977
7978
        return self::reduce_string_array(
7979
            $return,
7980
            $removeEmptyValues,
7981
            $removeShortValues
7982
        );
7983
    }
7984
7985
    /**
7986
     * Convert a string into an array of words.
7987
     *
7988
     * @param string   $str
7989
     * @param string   $charList          <p>Additional chars for the definition of "words".</p>
7990
     * @param bool     $removeEmptyValues <p>Remove empty values.</p>
7991
     * @param int|null $removeShortValues <p>The min. string length or null to disable</p>
7992
     *
7993
     * @return string[]
7994
     */
7995 13
    public static function str_to_words(
7996
        string $str,
7997
        string $charList = '',
7998
        bool $removeEmptyValues = false,
7999
        int $removeShortValues = null
8000
    ): array {
8001 13
        if ($str === '') {
8002 4
            return $removeEmptyValues === true ? [] : [''];
8003
        }
8004
8005 13
        $charList = self::rxClass($charList, '\pL');
8006
8007 13
        $return = \preg_split("/({$charList}+(?:[\p{Pd}’']{$charList}+)*)/u", $str, -1, \PREG_SPLIT_DELIM_CAPTURE);
8008 13
        if ($return === false) {
8009
            return $removeEmptyValues === true ? [] : [''];
8010
        }
8011
8012
        if (
8013 13
            $removeShortValues === null
8014
            &&
8015 13
            $removeEmptyValues === false
8016
        ) {
8017 13
            return $return;
0 ignored issues
show
Bug Best Practice introduced by
The expression return $return returns an array which contains values of type array which are incompatible with the documented value type string.
Loading history...
8018
        }
8019
8020 2
        $tmpReturn = self::reduce_string_array(
8021 2
            $return,
8022 2
            $removeEmptyValues,
8023 2
            $removeShortValues
8024
        );
8025
8026 2
        foreach ($tmpReturn as &$item) {
8027 2
            $item = (string) $item;
8028
        }
8029
8030 2
        return $tmpReturn;
8031
    }
8032
8033
    /**
8034
     * alias for "UTF8::to_ascii()"
8035
     *
8036
     * @param string $str
8037
     * @param string $unknown
8038
     * @param bool   $strict
8039
     *
8040
     * @return string
8041
     *
8042
     * @see UTF8::to_ascii()
8043
     */
8044 8
    public static function str_transliterate(string $str, string $unknown = '?', bool $strict = false): string
8045
    {
8046 8
        return self::to_ascii($str, $unknown, $strict);
8047
    }
8048
8049
    /**
8050
     * Truncates the string to a given length. If $substring is provided, and
8051
     * truncating occurs, the string is further truncated so that the substring
8052
     * may be appended without exceeding the desired length.
8053
     *
8054
     * @param string $str
8055
     * @param int    $length    <p>Desired length of the truncated string.</p>
8056
     * @param string $substring [optional] <p>The substring to append if it can fit. Default: ''</p>
8057
     * @param string $encoding  [optional] <p>Default: 'UTF-8'</p>
8058
     *
8059
     * @return string string after truncating
8060
     */
8061 22
    public static function str_truncate(
8062
        string $str,
8063
        int $length,
8064
        string $substring = '',
8065
        string $encoding = 'UTF-8'
8066
    ): string {
8067 22
        if ($str === '') {
8068
            return '';
8069
        }
8070
8071 22
        if ($encoding === 'UTF-8') {
8072 10
            if ($length >= (int) \mb_strlen($str)) {
8073 2
                return $str;
8074
            }
8075
8076 8
            if ($substring !== '') {
8077 4
                $length -= (int) \mb_strlen($substring);
8078
8079
                /** @noinspection UnnecessaryCastingInspection */
8080 4
                return (string) \mb_substr($str, 0, $length) . $substring;
8081
            }
8082
8083
            /** @noinspection UnnecessaryCastingInspection */
8084 4
            return (string) \mb_substr($str, 0, $length);
8085
        }
8086
8087 12
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
8088
8089 12
        if ($length >= (int) self::strlen($str, $encoding)) {
8090 2
            return $str;
8091
        }
8092
8093 10
        if ($substring !== '') {
8094 6
            $length -= (int) self::strlen($substring, $encoding);
8095
        }
8096
8097
        return (
8098 10
               (string) self::substr(
8099 10
                   $str,
8100 10
                   0,
8101 10
                   $length,
8102 10
                   $encoding
8103
               )
8104 10
               ) . $substring;
8105
    }
8106
8107
    /**
8108
     * Truncates the string to a given length, while ensuring that it does not
8109
     * split words. If $substring is provided, and truncating occurs, the
8110
     * string is further truncated so that the substring may be appended without
8111
     * exceeding the desired length.
8112
     *
8113
     * @param string $str
8114
     * @param int    $length                          <p>Desired length of the truncated string.</p>
8115
     * @param string $substring                       [optional] <p>The substring to append if it can fit. Default:
8116
     *                                                ''</p>
8117
     * @param string $encoding                        [optional] <p>Default: 'UTF-8'</p>
8118
     * @param bool   $ignoreDoNotSplitWordsForOneWord [optional] <p>Default: false</p>
8119
     *
8120
     * @return string string after truncating
8121
     */
8122 47
    public static function str_truncate_safe(
8123
        string $str,
8124
        int $length,
8125
        string $substring = '',
8126
        string $encoding = 'UTF-8',
8127
        bool $ignoreDoNotSplitWordsForOneWord = false
8128
    ): string {
8129 47
        if ($str === '' || $length <= 0) {
8130 1
            return $substring;
8131
        }
8132
8133 47
        if ($encoding === 'UTF-8') {
8134 21
            if ($length >= (int) \mb_strlen($str)) {
8135 5
                return $str;
8136
            }
8137
8138
            // need to further trim the string so we can append the substring
8139 17
            $length -= (int) \mb_strlen($substring);
8140 17
            if ($length <= 0) {
8141 1
                return $substring;
8142
            }
8143
8144 17
            $truncated = \mb_substr($str, 0, $length);
8145
8146 17
            if ($truncated === false) {
8147
                return '';
8148
            }
8149
8150
            // if the last word was truncated
8151 17
            $strPosSpace = \mb_strpos($str, ' ', $length - 1);
8152 17
            if ($strPosSpace !== $length) {
8153
                // find pos of the last occurrence of a space, get up to that
8154 13
                $lastPos = \mb_strrpos($truncated, ' ', 0);
8155
8156
                if (
8157 13
                    $lastPos !== false
8158
                    ||
8159 13
                    ($strPosSpace !== false && $ignoreDoNotSplitWordsForOneWord === false)
8160
                ) {
8161 17
                    $truncated = (string) \mb_substr($truncated, 0, (int) $lastPos);
8162
                }
8163
            }
8164
        } else {
8165 26
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8166
8167 26
            if ($length >= (int) self::strlen($str, $encoding)) {
8168 4
                return $str;
8169
            }
8170
8171
            // need to further trim the string so we can append the substring
8172 22
            $length -= (int) self::strlen($substring, $encoding);
8173 22
            if ($length <= 0) {
8174
                return $substring;
8175
            }
8176
8177 22
            $truncated = self::substr($str, 0, $length, $encoding);
8178
8179 22
            if ($truncated === false) {
8180
                return '';
8181
            }
8182
8183
            // if the last word was truncated
8184 22
            $strPosSpace = self::strpos($str, ' ', $length - 1, $encoding);
8185 22
            if ($strPosSpace !== $length) {
8186
                // find pos of the last occurrence of a space, get up to that
8187 12
                $lastPos = self::strrpos($truncated, ' ', 0, $encoding);
8188
8189
                if (
8190 12
                    $lastPos !== false
8191
                    ||
8192 12
                    ($strPosSpace !== false && $ignoreDoNotSplitWordsForOneWord === false)
8193
                ) {
8194 9
                    $truncated = (string) self::substr($truncated, 0, (int) $lastPos, $encoding);
8195
                }
8196
            }
8197
        }
8198
8199 39
        return $truncated . $substring;
8200
    }
8201
8202
    /**
8203
     * Returns a lowercase and trimmed string separated by underscores.
8204
     * Underscores are inserted before uppercase characters (with the exception
8205
     * of the first character of the string), and in place of spaces as well as
8206
     * dashes.
8207
     *
8208
     * @param string $str
8209
     *
8210
     * @return string the underscored string
8211
     */
8212 16
    public static function str_underscored(string $str): string
8213
    {
8214 16
        return self::str_delimit($str, '_');
8215
    }
8216
8217
    /**
8218
     * Returns an UpperCamelCase version of the supplied string. It trims
8219
     * surrounding spaces, capitalizes letters following digits, spaces, dashes
8220
     * and underscores, and removes spaces, dashes, underscores.
8221
     *
8222
     * @param string      $str                   <p>The input string.</p>
8223
     * @param string      $encoding              [optional] <p>Default: 'UTF-8'</p>
8224
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
8225
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
8226
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
8227
     *
8228
     * @return string string in UpperCamelCase
8229
     */
8230 13
    public static function str_upper_camelize(
8231
        string $str,
8232
        string $encoding = 'UTF-8',
8233
        bool $cleanUtf8 = false,
8234
        string $lang = null,
8235
        bool $tryToKeepStringLength = false
8236
    ): string {
8237 13
        return self::ucfirst(self::str_camelize($str, $encoding), $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
8238
    }
8239
8240
    /**
8241
     * alias for "UTF8::ucfirst()"
8242
     *
8243
     * @param string      $str
8244
     * @param string      $encoding
8245
     * @param bool        $cleanUtf8
8246
     * @param string|null $lang
8247
     * @param bool        $tryToKeepStringLength
8248
     *
8249
     * @return string
8250
     *
8251
     * @see UTF8::ucfirst()
8252
     */
8253 39
    public static function str_upper_first(
8254
        string $str,
8255
        string $encoding = 'UTF-8',
8256
        bool $cleanUtf8 = false,
8257
        string $lang = null,
8258
        bool $tryToKeepStringLength = false
8259
    ): string {
8260 39
        return self::ucfirst($str, $encoding, $cleanUtf8, $lang, $tryToKeepStringLength);
8261
    }
8262
8263
    /**
8264
     * Counts number of words in the UTF-8 string.
8265
     *
8266
     * @param string $str      <p>The input string.</p>
8267
     * @param int    $format   [optional] <p>
8268
     *                         <strong>0</strong> => return a number of words (default)<br>
8269
     *                         <strong>1</strong> => return an array of words<br>
8270
     *                         <strong>2</strong> => return an array of words with word-offset as key
8271
     *                         </p>
8272
     * @param string $charlist [optional] <p>Additional chars that contains to words and do not start a new word.</p>
8273
     *
8274
     * @return int|string[] The number of words in the string
8275
     */
8276 2
    public static function str_word_count(string $str, int $format = 0, string $charlist = '')
8277
    {
8278 2
        $strParts = self::str_to_words($str, $charlist);
8279
8280 2
        $len = \count($strParts);
8281
8282 2
        if ($format === 1) {
8283 2
            $numberOfWords = [];
8284 2
            for ($i = 1; $i < $len; $i += 2) {
8285 2
                $numberOfWords[] = $strParts[$i];
8286
            }
8287 2
        } elseif ($format === 2) {
8288 2
            $numberOfWords = [];
8289 2
            $offset = (int) self::strlen($strParts[0]);
8290 2
            for ($i = 1; $i < $len; $i += 2) {
8291 2
                $numberOfWords[$offset] = $strParts[$i];
8292 2
                $offset += (int) self::strlen($strParts[$i]) + (int) self::strlen($strParts[$i + 1]);
8293
            }
8294
        } else {
8295 2
            $numberOfWords = (int) (($len - 1) / 2);
8296
        }
8297
8298 2
        return $numberOfWords;
8299
    }
8300
8301
    /**
8302
     * Case-insensitive string comparison.
8303
     *
8304
     * INFO: Case-insensitive version of UTF8::strcmp()
8305
     *
8306
     * @param string $str1     <p>The first string.</p>
8307
     * @param string $str2     <p>The second string.</p>
8308
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
8309
     *
8310
     * @return int
8311
     *             <strong>&lt; 0</strong> if str1 is less than str2;<br>
8312
     *             <strong>&gt; 0</strong> if str1 is greater than str2,<br>
8313
     *             <strong>0</strong> if they are equal
8314
     */
8315 23
    public static function strcasecmp(string $str1, string $str2, string $encoding = 'UTF-8'): int
8316
    {
8317 23
        return self::strcmp(
8318 23
            self::strtocasefold($str1, true, false, $encoding, null, false),
8319 23
            self::strtocasefold($str2, true, false, $encoding, null, false)
8320
        );
8321
    }
8322
8323
    /**
8324
     * alias for "UTF8::strstr()"
8325
     *
8326
     * @param string $haystack
8327
     * @param string $needle
8328
     * @param bool   $before_needle
8329
     * @param string $encoding
8330
     * @param bool   $cleanUtf8
8331
     *
8332
     * @return false|string
8333
     *
8334
     * @see UTF8::strstr()
8335
     */
8336 2
    public static function strchr(
8337
        string $haystack,
8338
        string $needle,
8339
        bool $before_needle = false,
8340
        string $encoding = 'UTF-8',
8341
        bool $cleanUtf8 = false
8342
    ) {
8343 2
        return self::strstr($haystack, $needle, $before_needle, $encoding, $cleanUtf8);
8344
    }
8345
8346
    /**
8347
     * Case-sensitive string comparison.
8348
     *
8349
     * @param string $str1 <p>The first string.</p>
8350
     * @param string $str2 <p>The second string.</p>
8351
     *
8352
     * @return int
8353
     *             <strong>&lt; 0</strong> if str1 is less than str2<br>
8354
     *             <strong>&gt; 0</strong> if str1 is greater than str2<br>
8355
     *             <strong>0</strong> if they are equal
8356
     */
8357 29
    public static function strcmp(string $str1, string $str2): int
8358
    {
8359 29
        if ($str1 === $str2) {
8360 21
            return 0;
8361
        }
8362
8363 24
        return \strcmp(
8364 24
            \Normalizer::normalize($str1, \Normalizer::NFD),
8365 24
            \Normalizer::normalize($str2, \Normalizer::NFD)
8366
        );
8367
    }
8368
8369
    /**
8370
     * Find length of initial segment not matching mask.
8371
     *
8372
     * @param string $str
8373
     * @param string $charList
8374
     * @param int    $offset
8375
     * @param int    $length
8376
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
8377
     *
8378
     * @return int
8379
     */
8380 12
    public static function strcspn(
8381
        string $str,
8382
        string $charList,
8383
        int $offset = null,
8384
        int $length = null,
8385
        string $encoding = 'UTF-8'
8386
    ): int {
8387 12
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
8388
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8389
        }
8390
8391 12
        if ($charList === '') {
8392 2
            return (int) self::strlen($str, $encoding);
8393
        }
8394
8395 11
        if ($offset !== null || $length !== null) {
8396 3
            if ($encoding === 'UTF-8') {
8397 3
                if ($length === null) {
8398
                    /** @noinspection UnnecessaryCastingInspection */
8399 2
                    $strTmp = \mb_substr($str, (int) $offset);
8400
                } else {
8401
                    /** @noinspection UnnecessaryCastingInspection */
8402 3
                    $strTmp = \mb_substr($str, (int) $offset, $length);
8403
                }
8404
            } else {
8405
                /** @noinspection UnnecessaryCastingInspection */
8406
                $strTmp = self::substr($str, (int) $offset, $length, $encoding);
8407
            }
8408
8409 3
            if ($strTmp === false) {
8410
                return 0;
8411
            }
8412
8413 3
            $str = $strTmp;
8414
        }
8415
8416 11
        if ($str === '') {
8417 2
            return 0;
8418
        }
8419
8420 10
        $matches = [];
8421 10
        if (\preg_match('/^(.*?)' . self::rxClass($charList) . '/us', $str, $matches)) {
8422 9
            $return = self::strlen($matches[1], $encoding);
8423 9
            if ($return === false) {
8424
                return 0;
8425
            }
8426
8427 9
            return $return;
8428
        }
8429
8430 2
        return (int) self::strlen($str, $encoding);
8431
    }
8432
8433
    /**
8434
     * alias for "UTF8::stristr()"
8435
     *
8436
     * @param string $haystack
8437
     * @param string $needle
8438
     * @param bool   $before_needle
8439
     * @param string $encoding
8440
     * @param bool   $cleanUtf8
8441
     *
8442
     * @return false|string
8443
     *
8444
     * @see UTF8::stristr()
8445
     */
8446 1
    public static function strichr(
8447
        string $haystack,
8448
        string $needle,
8449
        bool $before_needle = false,
8450
        string $encoding = 'UTF-8',
8451
        bool $cleanUtf8 = false
8452
    ) {
8453 1
        return self::stristr($haystack, $needle, $before_needle, $encoding, $cleanUtf8);
8454
    }
8455
8456
    /**
8457
     * Create a UTF-8 string from code points.
8458
     *
8459
     * INFO: opposite to UTF8::codepoints()
8460
     *
8461
     * @param array $array <p>Integer or Hexadecimal codepoints.</p>
8462
     *
8463
     * @return string UTF-8 encoded string
8464
     */
8465 4
    public static function string(array $array): string
8466
    {
8467 4
        return \implode(
8468 4
            '',
8469 4
            \array_map(
8470
                [
8471 4
                    self::class,
8472
                    'chr',
8473
                ],
8474 4
                $array
8475
            )
8476
        );
8477
    }
8478
8479
    /**
8480
     * Checks if string starts with "BOM" (Byte Order Mark Character) character.
8481
     *
8482
     * @param string $str <p>The input string.</p>
8483
     *
8484
     * @return bool
8485
     *              <strong>true</strong> if the string has BOM at the start,<br>
8486
     *              <strong>false</strong> otherwise
8487
     */
8488 6
    public static function string_has_bom(string $str): bool
8489
    {
8490
        /** @noinspection PhpUnusedLocalVariableInspection */
8491 6
        foreach (self::$BOM as $bomString => &$bomByteLength) {
8492 6
            if (\strpos($str, $bomString) === 0) {
8493 6
                return true;
8494
            }
8495
        }
8496
8497 6
        return false;
8498
    }
8499
8500
    /**
8501
     * Strip HTML and PHP tags from a string + clean invalid UTF-8.
8502
     *
8503
     * @see http://php.net/manual/en/function.strip-tags.php
8504
     *
8505
     * @param string $str            <p>
8506
     *                               The input string.
8507
     *                               </p>
8508
     * @param string $allowable_tags [optional] <p>
8509
     *                               You can use the optional second parameter to specify tags which should
8510
     *                               not be stripped.
8511
     *                               </p>
8512
     *                               <p>
8513
     *                               HTML comments and PHP tags are also stripped. This is hardcoded and
8514
     *                               can not be changed with allowable_tags.
8515
     *                               </p>
8516
     * @param bool   $cleanUtf8      [optional] <p>Remove non UTF-8 chars from the string.</p>
8517
     *
8518
     * @return string the stripped string
8519
     */
8520 4
    public static function strip_tags(string $str, string $allowable_tags = null, bool $cleanUtf8 = false): string
8521
    {
8522 4
        if ($str === '') {
8523 1
            return '';
8524
        }
8525
8526 4
        if ($cleanUtf8 === true) {
8527 2
            $str = self::clean($str);
8528
        }
8529
8530 4
        if ($allowable_tags === null) {
8531 4
            return \strip_tags($str);
8532
        }
8533
8534 2
        return \strip_tags($str, $allowable_tags);
8535
    }
8536
8537
    /**
8538
     * Strip all whitespace characters. This includes tabs and newline
8539
     * characters, as well as multibyte whitespace such as the thin space
8540
     * and ideographic space.
8541
     *
8542
     * @param string $str
8543
     *
8544
     * @return string
8545
     */
8546 36
    public static function strip_whitespace(string $str): string
8547
    {
8548 36
        if ($str === '') {
8549 3
            return '';
8550
        }
8551
8552 33
        return (string) \preg_replace('/[[:space:]]+/u', '', $str);
8553
    }
8554
8555
    /**
8556
     * Finds position of first occurrence of a string within another, case insensitive.
8557
     *
8558
     * @see http://php.net/manual/en/function.mb-stripos.php
8559
     *
8560
     * @param string $haystack  <p>The string from which to get the position of the first occurrence of needle.</p>
8561
     * @param string $needle    <p>The string to find in haystack.</p>
8562
     * @param int    $offset    [optional] <p>The position in haystack to start searching.</p>
8563
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
8564
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
8565
     *
8566
     * @return false|int
8567
     *                   Return the <strong>(int)</strong> numeric position of the first occurrence of needle in the
8568
     *                   haystack string,<br> or <strong>false</strong> if needle is not found
8569
     */
8570 24
    public static function stripos(
8571
        string $haystack,
8572
        string $needle,
8573
        int $offset = 0,
8574
        $encoding = 'UTF-8',
8575
        bool $cleanUtf8 = false
8576
    ) {
8577 24
        if ($haystack === '' || $needle === '') {
8578 5
            return false;
8579
        }
8580
8581 23
        if ($cleanUtf8 === true) {
8582
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
8583
            // if invalid characters are found in $haystack before $needle
8584 1
            $haystack = self::clean($haystack);
8585 1
            $needle = self::clean($needle);
8586
        }
8587
8588 23
        if (self::$SUPPORT['mbstring'] === true) {
8589 23
            if ($encoding === 'UTF-8') {
8590 23
                return \mb_stripos($haystack, $needle, $offset);
8591
            }
8592
8593 3
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8594
8595 3
            return \mb_stripos($haystack, $needle, $offset, $encoding);
8596
        }
8597
8598 2
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
8599
8600
        if (
8601 2
            $encoding === 'UTF-8' // INFO: "grapheme_stripos()" can't handle other encodings
8602
            &&
8603 2
            $offset >= 0 // grapheme_stripos() can't handle negative offset
8604
            &&
8605 2
            self::$SUPPORT['intl'] === true
8606
        ) {
8607
            $returnTmp = \grapheme_stripos($haystack, $needle, $offset);
8608
            if ($returnTmp !== false) {
8609
                return $returnTmp;
8610
            }
8611
        }
8612
8613
        //
8614
        // fallback for ascii only
8615
        //
8616
8617 2
        if (self::is_ascii($haystack . $needle)) {
8618
            return \stripos($haystack, $needle, $offset);
8619
        }
8620
8621
        //
8622
        // fallback via vanilla php
8623
        //
8624
8625 2
        $haystack = self::strtocasefold($haystack, true, false, $encoding, null, false);
8626 2
        $needle = self::strtocasefold($needle, true, false, $encoding, null, false);
8627
8628 2
        return self::strpos($haystack, $needle, $offset, $encoding);
8629
    }
8630
8631
    /**
8632
     * Returns all of haystack starting from and including the first occurrence of needle to the end.
8633
     *
8634
     * @param string $haystack      <p>The input string. Must be valid UTF-8.</p>
8635
     * @param string $needle        <p>The string to look for. Must be valid UTF-8.</p>
8636
     * @param bool   $before_needle [optional] <p>
8637
     *                              If <b>TRUE</b>, it returns the part of the
8638
     *                              haystack before the first occurrence of the needle (excluding the needle).
8639
     *                              </p>
8640
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
8641
     * @param bool   $cleanUtf8     [optional] <p>Remove non UTF-8 chars from the string.</p>
8642
     *
8643
     * @return false|string a sub-string,<br>or <strong>false</strong> if needle is not found
8644
     */
8645 12
    public static function stristr(
8646
        string $haystack,
8647
        string $needle,
8648
        bool $before_needle = false,
8649
        string $encoding = 'UTF-8',
8650
        bool $cleanUtf8 = false
8651
    ) {
8652 12
        if ($haystack === '' || $needle === '') {
8653 3
            return false;
8654
        }
8655
8656 9
        if ($cleanUtf8 === true) {
8657
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
8658
            // if invalid characters are found in $haystack before $needle
8659 1
            $needle = self::clean($needle);
8660 1
            $haystack = self::clean($haystack);
8661
        }
8662
8663 9
        if (!$needle) {
8664
            return $haystack;
8665
        }
8666
8667 9
        if (self::$SUPPORT['mbstring'] === true) {
8668 9
            if ($encoding === 'UTF-8') {
8669 9
                return \mb_stristr($haystack, $needle, $before_needle);
8670
            }
8671
8672 1
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8673
8674 1
            return \mb_stristr($haystack, $needle, $before_needle, $encoding);
8675
        }
8676
8677
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
8678
8679
        if (
8680
            $encoding !== 'UTF-8'
8681
            &&
8682
            self::$SUPPORT['mbstring'] === false
8683
        ) {
8684
            \trigger_error('UTF8::stristr() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
8685
        }
8686
8687
        if (
8688
            $encoding === 'UTF-8' // INFO: "grapheme_stristr()" can't handle other encodings
8689
            &&
8690
            self::$SUPPORT['intl'] === true
8691
        ) {
8692
            $returnTmp = \grapheme_stristr($haystack, $needle, $before_needle);
8693
            if ($returnTmp !== false) {
8694
                return $returnTmp;
8695
            }
8696
        }
8697
8698
        if (self::is_ascii($needle . $haystack)) {
8699
            return \stristr($haystack, $needle, $before_needle);
8700
        }
8701
8702
        \preg_match('/^(.*?)' . \preg_quote($needle, '/') . '/usi', $haystack, $match);
8703
8704
        if (!isset($match[1])) {
8705
            return false;
8706
        }
8707
8708
        if ($before_needle) {
8709
            return $match[1];
8710
        }
8711
8712
        return self::substr($haystack, (int) self::strlen($match[1], $encoding), null, $encoding);
8713
    }
8714
8715
    /**
8716
     * Get the string length, not the byte-length!
8717
     *
8718
     * @see http://php.net/manual/en/function.mb-strlen.php
8719
     *
8720
     * @param string $str       <p>The string being checked for length.</p>
8721
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
8722
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
8723
     *
8724
     * @return false|int
8725
     *                   The number <strong>(int)</strong> of characters in the string $str having character encoding
8726
     *                   $encoding.
8727
     *                   (One multi-byte character counted as +1).
8728
     *                   <br>
8729
     *                   Can return <strong>false</strong>, if e.g. mbstring is not installed and we process invalid
8730
     *                   chars.
8731
     */
8732 173
    public static function strlen(string $str, string $encoding = 'UTF-8', bool $cleanUtf8 = false)
8733
    {
8734 173
        if ($str === '') {
8735 21
            return 0;
8736
        }
8737
8738 171
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
8739 12
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8740
        }
8741
8742 171
        if ($cleanUtf8 === true) {
8743
            // "mb_strlen" and "\iconv_strlen" returns wrong length,
8744
            // if invalid characters are found in $str
8745 4
            $str = self::clean($str);
8746
        }
8747
8748
        //
8749
        // fallback via mbstring
8750
        //
8751
8752 171
        if (self::$SUPPORT['mbstring'] === true) {
8753 165
            if ($encoding === 'UTF-8') {
8754 165
                return \mb_strlen($str);
8755
            }
8756
8757 4
            return \mb_strlen($str, $encoding);
8758
        }
8759
8760
        //
8761
        // fallback for binary || ascii only
8762
        //
8763
8764
        if (
8765 8
            $encoding === 'CP850'
8766
            ||
8767 8
            $encoding === 'ASCII'
8768
        ) {
8769
            return \strlen($str);
8770
        }
8771
8772
        if (
8773 8
            $encoding !== 'UTF-8'
8774
            &&
8775 8
            self::$SUPPORT['mbstring'] === false
8776
            &&
8777 8
            self::$SUPPORT['iconv'] === false
8778
        ) {
8779 2
            \trigger_error('UTF8::strlen() without mbstring / iconv cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
8780
        }
8781
8782
        //
8783
        // fallback via iconv
8784
        //
8785
8786 8
        if (self::$SUPPORT['iconv'] === true) {
8787
            $returnTmp = \iconv_strlen($str, $encoding);
8788
            if ($returnTmp !== false) {
8789
                return $returnTmp;
8790
            }
8791
        }
8792
8793
        //
8794
        // fallback via intl
8795
        //
8796
8797
        if (
8798 8
            $encoding === 'UTF-8' // INFO: "grapheme_strlen()" can't handle other encodings
8799
            &&
8800 8
            self::$SUPPORT['intl'] === true
8801
        ) {
8802
            $returnTmp = \grapheme_strlen($str);
8803
            if ($returnTmp !== null) {
8804
                return $returnTmp;
8805
            }
8806
        }
8807
8808
        //
8809
        // fallback for ascii only
8810
        //
8811
8812 8
        if (self::is_ascii($str)) {
8813 4
            return \strlen($str);
8814
        }
8815
8816
        //
8817
        // fallback via vanilla php
8818
        //
8819
8820 8
        \preg_match_all('/./us', $str, $parts);
8821
8822 8
        $returnTmp = \count($parts[0]);
8823 8
        if ($returnTmp === 0) {
8824
            return false;
8825
        }
8826
8827 8
        return $returnTmp;
8828
    }
8829
8830
    /**
8831
     * Get string length in byte.
8832
     *
8833
     * @param string $str
8834
     *
8835
     * @return int
8836
     */
8837
    public static function strlen_in_byte(string $str): int
8838
    {
8839
        if ($str === '') {
8840
            return 0;
8841
        }
8842
8843
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
8844
            // "mb_" is available if overload is used, so use it ...
8845
            return \mb_strlen($str, 'CP850'); // 8-BIT
8846
        }
8847
8848
        return \strlen($str);
8849
    }
8850
8851
    /**
8852
     * Case insensitive string comparisons using a "natural order" algorithm.
8853
     *
8854
     * INFO: natural order version of UTF8::strcasecmp()
8855
     *
8856
     * @param string $str1     <p>The first string.</p>
8857
     * @param string $str2     <p>The second string.</p>
8858
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
8859
     *
8860
     * @return int
8861
     *             <strong>&lt; 0</strong> if str1 is less than str2<br>
8862
     *             <strong>&gt; 0</strong> if str1 is greater than str2<br>
8863
     *             <strong>0</strong> if they are equal
8864
     */
8865 2
    public static function strnatcasecmp(string $str1, string $str2, string $encoding = 'UTF-8'): int
8866
    {
8867 2
        return self::strnatcmp(
8868 2
            self::strtocasefold($str1, true, false, $encoding, null, false),
8869 2
            self::strtocasefold($str2, true, false, $encoding, null, false)
8870
        );
8871
    }
8872
8873
    /**
8874
     * String comparisons using a "natural order" algorithm
8875
     *
8876
     * INFO: natural order version of UTF8::strcmp()
8877
     *
8878
     * @see http://php.net/manual/en/function.strnatcmp.php
8879
     *
8880
     * @param string $str1 <p>The first string.</p>
8881
     * @param string $str2 <p>The second string.</p>
8882
     *
8883
     * @return int
8884
     *             <strong>&lt; 0</strong> if str1 is less than str2;<br>
8885
     *             <strong>&gt; 0</strong> if str1 is greater than str2;<br>
8886
     *             <strong>0</strong> if they are equal
8887
     */
8888 4
    public static function strnatcmp(string $str1, string $str2): int
8889
    {
8890 4
        if ($str1 === $str2) {
8891 4
            return 0;
8892
        }
8893
8894 4
        return \strnatcmp(
8895 4
            (string) self::strtonatfold($str1),
8896 4
            (string) self::strtonatfold($str2)
8897
        );
8898
    }
8899
8900
    /**
8901
     * Case-insensitive string comparison of the first n characters.
8902
     *
8903
     * @see http://php.net/manual/en/function.strncasecmp.php
8904
     *
8905
     * @param string $str1     <p>The first string.</p>
8906
     * @param string $str2     <p>The second string.</p>
8907
     * @param int    $len      <p>The length of strings to be used in the comparison.</p>
8908
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
8909
     *
8910
     * @return int
8911
     *             <strong>&lt; 0</strong> if <i>str1</i> is less than <i>str2</i>;<br>
8912
     *             <strong>&gt; 0</strong> if <i>str1</i> is greater than <i>str2</i>;<br>
8913
     *             <strong>0</strong> if they are equal
8914
     */
8915 2
    public static function strncasecmp(
8916
        string $str1,
8917
        string $str2,
8918
        int $len,
8919
        string $encoding = 'UTF-8'
8920
    ): int {
8921 2
        return self::strncmp(
8922 2
            self::strtocasefold($str1, true, false, $encoding, null, false),
8923 2
            self::strtocasefold($str2, true, false, $encoding, null, false),
8924 2
            $len
8925
        );
8926
    }
8927
8928
    /**
8929
     * String comparison of the first n characters.
8930
     *
8931
     * @see http://php.net/manual/en/function.strncmp.php
8932
     *
8933
     * @param string $str1     <p>The first string.</p>
8934
     * @param string $str2     <p>The second string.</p>
8935
     * @param int    $len      <p>Number of characters to use in the comparison.</p>
8936
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
8937
     *
8938
     * @return int
8939
     *             <strong>&lt; 0</strong> if <i>str1</i> is less than <i>str2</i>;<br>
8940
     *             <strong>&gt; 0</strong> if <i>str1</i> is greater than <i>str2</i>;<br>
8941
     *             <strong>0</strong> if they are equal
8942
     */
8943 4
    public static function strncmp(
8944
        string $str1,
8945
        string $str2,
8946
        int $len,
8947
        string $encoding = 'UTF-8'
8948
    ): int {
8949 4
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
8950
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
8951
        }
8952
8953 4
        if ($encoding === 'UTF-8') {
8954 4
            $str1 = (string) \mb_substr($str1, 0, $len);
8955 4
            $str2 = (string) \mb_substr($str2, 0, $len);
8956
        } else {
8957
            $str1 = (string) self::substr($str1, 0, $len, $encoding);
8958
            $str2 = (string) self::substr($str2, 0, $len, $encoding);
8959
        }
8960
8961 4
        return self::strcmp($str1, $str2);
8962
    }
8963
8964
    /**
8965
     * Search a string for any of a set of characters.
8966
     *
8967
     * @see http://php.net/manual/en/function.strpbrk.php
8968
     *
8969
     * @param string $haystack  <p>The string where char_list is looked for.</p>
8970
     * @param string $char_list <p>This parameter is case sensitive.</p>
8971
     *
8972
     * @return false|string string starting from the character found, or false if it is not found
8973
     */
8974 2
    public static function strpbrk(string $haystack, string $char_list)
8975
    {
8976 2
        if ($haystack === '' || $char_list === '') {
8977 2
            return false;
8978
        }
8979
8980 2
        if (\preg_match('/' . self::rxClass($char_list) . '/us', $haystack, $m)) {
8981 2
            return \substr($haystack, (int) \strpos($haystack, $m[0]));
8982
        }
8983
8984 2
        return false;
8985
    }
8986
8987
    /**
8988
     * Find position of first occurrence of string in a string.
8989
     *
8990
     * @see http://php.net/manual/en/function.mb-strpos.php
8991
     *
8992
     * @param string     $haystack  <p>The string from which to get the position of the first occurrence of needle.</p>
8993
     * @param int|string $needle    <p>The string to find in haystack.<br>Or a code point as int.</p>
8994
     * @param int        $offset    [optional] <p>The search offset. If it is not specified, 0 is used.</p>
8995
     * @param string     $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
8996
     * @param bool       $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
8997
     *
8998
     * @return false|int
8999
     *                   The <strong>(int)</strong> numeric position of the first occurrence of needle in the haystack
9000
     *                   string.<br> If needle is not found it returns false.
9001
     */
9002 53
    public static function strpos(
9003
        string $haystack,
9004
        $needle,
9005
        int $offset = 0,
9006
        $encoding = 'UTF-8',
9007
        bool $cleanUtf8 = false
9008
    ) {
9009 53
        if ($haystack === '') {
9010 4
            return false;
9011
        }
9012
9013
        // iconv and mbstring do not support integer $needle
9014 52
        if ((int) $needle === $needle) {
9015
            $needle = (string) self::chr($needle);
9016
        }
9017 52
        $needle = (string) $needle;
9018
9019 52
        if ($needle === '') {
9020 2
            return false;
9021
        }
9022
9023 52
        if ($cleanUtf8 === true) {
9024
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
9025
            // if invalid characters are found in $haystack before $needle
9026 3
            $needle = self::clean($needle);
9027 3
            $haystack = self::clean($haystack);
9028
        }
9029
9030 52
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9031 11
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9032
        }
9033
9034
        //
9035
        // fallback via mbstring
9036
        //
9037
9038 52
        if (self::$SUPPORT['mbstring'] === true) {
9039 50
            if ($encoding === 'UTF-8') {
9040 50
                return \mb_strpos($haystack, $needle, $offset);
9041
            }
9042
9043 2
            return \mb_strpos($haystack, $needle, $offset, $encoding);
9044
        }
9045
9046
        //
9047
        // fallback for binary || ascii only
9048
        //
9049
        if (
9050 4
            $encoding === 'CP850'
9051
            ||
9052 4
            $encoding === 'ASCII'
9053
        ) {
9054 2
            return \strpos($haystack, $needle, $offset);
9055
        }
9056
9057
        if (
9058 4
            $encoding !== 'UTF-8'
9059
            &&
9060 4
            self::$SUPPORT['iconv'] === false
9061
            &&
9062 4
            self::$SUPPORT['mbstring'] === false
9063
        ) {
9064 2
            \trigger_error('UTF8::strpos() without mbstring / iconv cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
9065
        }
9066
9067
        //
9068
        // fallback via intl
9069
        //
9070
9071
        if (
9072 4
            $encoding === 'UTF-8' // INFO: "grapheme_strpos()" can't handle other encodings
9073
            &&
9074 4
            $offset >= 0 // grapheme_strpos() can't handle negative offset
9075
            &&
9076 4
            self::$SUPPORT['intl'] === true
9077
        ) {
9078
            $returnTmp = \grapheme_strpos($haystack, $needle, $offset);
9079
            if ($returnTmp !== false) {
9080
                return $returnTmp;
9081
            }
9082
        }
9083
9084
        //
9085
        // fallback via iconv
9086
        //
9087
9088
        if (
9089 4
            $offset >= 0 // iconv_strpos() can't handle negative offset
9090
            &&
9091 4
            self::$SUPPORT['iconv'] === true
9092
        ) {
9093
            // ignore invalid negative offset to keep compatibility
9094
            // with php < 5.5.35, < 5.6.21, < 7.0.6
9095
            $returnTmp = \iconv_strpos($haystack, $needle, $offset > 0 ? $offset : 0, $encoding);
9096
            if ($returnTmp !== false) {
9097
                return $returnTmp;
9098
            }
9099
        }
9100
9101
        //
9102
        // fallback for ascii only
9103
        //
9104
9105 4
        if (self::is_ascii($haystack . $needle)) {
9106 2
            return \strpos($haystack, $needle, $offset);
9107
        }
9108
9109
        //
9110
        // fallback via vanilla php
9111
        //
9112
9113 4
        $haystackTmp = self::substr($haystack, $offset, null, $encoding);
9114 4
        if ($haystackTmp === false) {
9115
            $haystackTmp = '';
9116
        }
9117 4
        $haystack = (string) $haystackTmp;
9118
9119 4
        if ($offset < 0) {
9120
            $offset = 0;
9121
        }
9122
9123 4
        $pos = \strpos($haystack, $needle);
9124 4
        if ($pos === false) {
9125 2
            return false;
9126
        }
9127
9128 4
        if ($pos) {
9129 4
            return $offset + (int) self::strlen(\substr($haystack, 0, $pos), $encoding);
9130
        }
9131
9132 2
        return $offset + 0;
9133
    }
9134
9135
    /**
9136
     * Find position of first occurrence of string in a string.
9137
     *
9138
     * @param string $haystack <p>
9139
     *                         The string being checked.
9140
     *                         </p>
9141
     * @param string $needle   <p>
9142
     *                         The position counted from the beginning of haystack.
9143
     *                         </p>
9144
     * @param int    $offset   [optional] <p>
9145
     *                         The search offset. If it is not specified, 0 is used.
9146
     *                         </p>
9147
     *
9148
     * @return false|int The numeric position of the first occurrence of needle in the
9149
     *                   haystack string. If needle is not found, it returns false.
9150
     */
9151
    public static function strpos_in_byte(string $haystack, string $needle, int $offset = 0)
9152
    {
9153
        if ($haystack === '' || $needle === '') {
9154
            return false;
9155
        }
9156
9157
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
9158
            // "mb_" is available if overload is used, so use it ...
9159
            return \mb_strpos($haystack, $needle, $offset, 'CP850'); // 8-BIT
9160
        }
9161
9162
        return \strpos($haystack, $needle, $offset);
9163
    }
9164
9165
    /**
9166
     * Finds the last occurrence of a character in a string within another.
9167
     *
9168
     * @see http://php.net/manual/en/function.mb-strrchr.php
9169
     *
9170
     * @param string $haystack      <p>The string from which to get the last occurrence of needle.</p>
9171
     * @param string $needle        <p>The string to find in haystack</p>
9172
     * @param bool   $before_needle [optional] <p>
9173
     *                              Determines which portion of haystack
9174
     *                              this function returns.
9175
     *                              If set to true, it returns all of haystack
9176
     *                              from the beginning to the last occurrence of needle.
9177
     *                              If set to false, it returns all of haystack
9178
     *                              from the last occurrence of needle to the end,
9179
     *                              </p>
9180
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
9181
     * @param bool   $cleanUtf8     [optional] <p>Remove non UTF-8 chars from the string.</p>
9182
     *
9183
     * @return false|string the portion of haystack or false if needle is not found
9184
     */
9185 2
    public static function strrchr(
9186
        string $haystack,
9187
        string $needle,
9188
        bool $before_needle = false,
9189
        string $encoding = 'UTF-8',
9190
        bool $cleanUtf8 = false
9191
    ) {
9192 2
        if ($haystack === '' || $needle === '') {
9193 2
            return false;
9194
        }
9195
9196 2
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9197 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9198
        }
9199
9200 2
        if ($cleanUtf8 === true) {
9201
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
9202
            // if invalid characters are found in $haystack before $needle
9203 2
            $needle = self::clean($needle);
9204 2
            $haystack = self::clean($haystack);
9205
        }
9206
9207
        //
9208
        // fallback via mbstring
9209
        //
9210
9211 2
        if (self::$SUPPORT['mbstring'] === true) {
9212 2
            if ($encoding === 'UTF-8') {
9213 2
                return \mb_strrchr($haystack, $needle, $before_needle);
9214
            }
9215
9216 2
            return \mb_strrchr($haystack, $needle, $before_needle, $encoding);
9217
        }
9218
9219
        //
9220
        // fallback for binary || ascii only
9221
        //
9222
9223
        if (
9224
            $before_needle === false
9225
            &&
9226
            (
9227
                $encoding === 'CP850'
9228
                ||
9229
                $encoding === 'ASCII'
9230
            )
9231
        ) {
9232
            return \strrchr($haystack, $needle);
9233
        }
9234
9235
        if (
9236
            $encoding !== 'UTF-8'
9237
            &&
9238
            self::$SUPPORT['mbstring'] === false
9239
        ) {
9240
            \trigger_error('UTF8::strrchr() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
9241
        }
9242
9243
        //
9244
        // fallback via iconv
9245
        //
9246
9247
        if (self::$SUPPORT['iconv'] === true) {
9248
            $needleTmp = self::substr($needle, 0, 1, $encoding);
9249
            if ($needleTmp === false) {
9250
                return false;
9251
            }
9252
            $needle = (string) $needleTmp;
9253
9254
            $pos = \iconv_strrpos($haystack, $needle, $encoding);
9255
            if ($pos === false) {
9256
                return false;
9257
            }
9258
9259
            if ($before_needle) {
9260
                return self::substr($haystack, 0, $pos, $encoding);
9261
            }
9262
9263
            return self::substr($haystack, $pos, null, $encoding);
9264
        }
9265
9266
        //
9267
        // fallback via vanilla php
9268
        //
9269
9270
        $needleTmp = self::substr($needle, 0, 1, $encoding);
9271
        if ($needleTmp === false) {
9272
            return false;
9273
        }
9274
        $needle = (string) $needleTmp;
9275
9276
        $pos = self::strrpos($haystack, $needle, 0, $encoding);
9277
        if ($pos === false) {
9278
            return false;
9279
        }
9280
9281
        if ($before_needle) {
9282
            return self::substr($haystack, 0, $pos, $encoding);
9283
        }
9284
9285
        return self::substr($haystack, $pos, null, $encoding);
9286
    }
9287
9288
    /**
9289
     * Reverses characters order in the string.
9290
     *
9291
     * @param string $str      <p>The input string.</p>
9292
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
9293
     *
9294
     * @return string the string with characters in the reverse sequence
9295
     */
9296 10
    public static function strrev(string $str, string $encoding = 'UTF-8'): string
9297
    {
9298 10
        if ($str === '') {
9299 4
            return '';
9300
        }
9301
9302
        // init
9303 8
        $reversed = '';
9304
9305 8
        $str = self::emoji_encode($str, true);
9306
9307 8
        if ($encoding === 'UTF-8') {
9308 8
            if (self::$SUPPORT['intl'] === true) {
9309
                // try "grapheme" first: https://stackoverflow.com/questions/17496493/strrev-dosent-support-utf-8
9310 8
                $i = (int) \grapheme_strlen($str);
9311 8
                while ($i--) {
9312 8
                    $reversedTmp = \grapheme_substr($str, $i, 1);
9313 8
                    if ($reversedTmp !== false) {
9314 8
                        $reversed .= $reversedTmp;
9315
                    }
9316
                }
9317
            } else {
9318
                $i = (int) \mb_strlen($str);
9319 8
                while ($i--) {
9320
                    $reversedTmp = \mb_substr($str, $i, 1);
9321
                    if ($reversedTmp !== false) {
9322
                        $reversed .= $reversedTmp;
9323
                    }
9324
                }
9325
            }
9326
        } else {
9327
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9328
9329
            $i = (int) self::strlen($str, $encoding);
9330
            while ($i--) {
9331
                $reversedTmp = self::substr($str, $i, 1, $encoding);
9332
                if ($reversedTmp !== false) {
9333
                    $reversed .= $reversedTmp;
9334
                }
9335
            }
9336
        }
9337
9338 8
        return self::emoji_decode($reversed, true);
9339
    }
9340
9341
    /**
9342
     * Finds the last occurrence of a character in a string within another, case insensitive.
9343
     *
9344
     * @see http://php.net/manual/en/function.mb-strrichr.php
9345
     *
9346
     * @param string $haystack      <p>The string from which to get the last occurrence of needle.</p>
9347
     * @param string $needle        <p>The string to find in haystack.</p>
9348
     * @param bool   $before_needle [optional] <p>
9349
     *                              Determines which portion of haystack
9350
     *                              this function returns.
9351
     *                              If set to true, it returns all of haystack
9352
     *                              from the beginning to the last occurrence of needle.
9353
     *                              If set to false, it returns all of haystack
9354
     *                              from the last occurrence of needle to the end,
9355
     *                              </p>
9356
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
9357
     * @param bool   $cleanUtf8     [optional] <p>Remove non UTF-8 chars from the string.</p>
9358
     *
9359
     * @return false|string the portion of haystack or<br>false if needle is not found
9360
     */
9361 3
    public static function strrichr(
9362
        string $haystack,
9363
        string $needle,
9364
        bool $before_needle = false,
9365
        string $encoding = 'UTF-8',
9366
        bool $cleanUtf8 = false
9367
    ) {
9368 3
        if ($haystack === '' || $needle === '') {
9369 2
            return false;
9370
        }
9371
9372 3
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9373 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9374
        }
9375
9376 3
        if ($cleanUtf8 === true) {
9377
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
9378
            // if invalid characters are found in $haystack before $needle
9379 2
            $needle = self::clean($needle);
9380 2
            $haystack = self::clean($haystack);
9381
        }
9382
9383
        //
9384
        // fallback via mbstring
9385
        //
9386
9387 3
        if (self::$SUPPORT['mbstring'] === true) {
9388 3
            if ($encoding === 'UTF-8') {
9389 3
                return \mb_strrichr($haystack, $needle, $before_needle);
9390
            }
9391
9392 2
            return \mb_strrichr($haystack, $needle, $before_needle, $encoding);
9393
        }
9394
9395
        //
9396
        // fallback via vanilla php
9397
        //
9398
9399
        $needleTmp = self::substr($needle, 0, 1, $encoding);
9400
        if ($needleTmp === false) {
9401
            return false;
9402
        }
9403
        $needle = (string) $needleTmp;
9404
9405
        $pos = self::strripos($haystack, $needle, 0, $encoding);
9406
        if ($pos === false) {
9407
            return false;
9408
        }
9409
9410
        if ($before_needle) {
9411
            return self::substr($haystack, 0, $pos, $encoding);
9412
        }
9413
9414
        return self::substr($haystack, $pos, null, $encoding);
9415
    }
9416
9417
    /**
9418
     * Find position of last occurrence of a case-insensitive string.
9419
     *
9420
     * @param string     $haystack  <p>The string to look in.</p>
9421
     * @param int|string $needle    <p>The string to look for.</p>
9422
     * @param int        $offset    [optional] <p>Number of characters to ignore in the beginning or end.</p>
9423
     * @param string     $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
9424
     * @param bool       $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
9425
     *
9426
     * @return false|int
9427
     *                   The <strong>(int)</strong> numeric position of the last occurrence of needle in the haystack
9428
     *                   string.<br>If needle is not found, it returns false.
9429
     */
9430 3
    public static function strripos(
9431
        string $haystack,
9432
        $needle,
9433
        int $offset = 0,
9434
        string $encoding = 'UTF-8',
9435
        bool $cleanUtf8 = false
9436
    ) {
9437 3
        if ($haystack === '') {
9438
            return false;
9439
        }
9440
9441
        // iconv and mbstring do not support integer $needle
9442 3
        if ((int) $needle === $needle && $needle >= 0) {
9443
            $needle = (string) self::chr($needle);
9444
        }
9445 3
        $needle = (string) $needle;
9446
9447 3
        if ($needle === '') {
9448
            return false;
9449
        }
9450
9451 3
        if ($cleanUtf8 === true) {
9452
            // mb_strripos() && iconv_strripos() is not tolerant to invalid characters
9453 2
            $needle = self::clean($needle);
9454 2
            $haystack = self::clean($haystack);
9455
        }
9456
9457 3
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9458 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9459
        }
9460
9461
        //
9462
        // fallback via mbstrig
9463
        //
9464
9465 3
        if (self::$SUPPORT['mbstring'] === true) {
9466 3
            if ($encoding === 'UTF-8') {
9467 3
                return \mb_strripos($haystack, $needle, $offset);
9468
            }
9469
9470
            return \mb_strripos($haystack, $needle, $offset, $encoding);
9471
        }
9472
9473
        //
9474
        // fallback for binary || ascii only
9475
        //
9476
9477
        if (
9478
            $encoding === 'CP850'
9479
            ||
9480
            $encoding === 'ASCII'
9481
        ) {
9482
            return \strripos($haystack, $needle, $offset);
9483
        }
9484
9485
        if (
9486
            $encoding !== 'UTF-8'
9487
            &&
9488
            self::$SUPPORT['mbstring'] === false
9489
        ) {
9490
            \trigger_error('UTF8::strripos() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
9491
        }
9492
9493
        //
9494
        // fallback via intl
9495
        //
9496
9497
        if (
9498
            $encoding === 'UTF-8' // INFO: "grapheme_strripos()" can't handle other encodings
9499
            &&
9500
            $offset >= 0 // grapheme_strripos() can't handle negative offset
9501
            &&
9502
            self::$SUPPORT['intl'] === true
9503
        ) {
9504
            $returnTmp = \grapheme_strripos($haystack, $needle, $offset);
9505
            if ($returnTmp !== false) {
9506
                return $returnTmp;
9507
            }
9508
        }
9509
9510
        //
9511
        // fallback for ascii only
9512
        //
9513
9514
        if (self::is_ascii($haystack . $needle)) {
9515
            return \strripos($haystack, $needle, $offset);
9516
        }
9517
9518
        //
9519
        // fallback via vanilla php
9520
        //
9521
9522
        $haystack = self::strtocasefold($haystack, true, false, $encoding);
9523
        $needle = self::strtocasefold($needle, true, false, $encoding);
9524
9525
        return self::strrpos($haystack, $needle, $offset, $encoding, $cleanUtf8);
9526
    }
9527
9528
    /**
9529
     * Finds position of last occurrence of a string within another, case insensitive.
9530
     *
9531
     * @param string $haystack <p>
9532
     *                         The string from which to get the position of the last occurrence
9533
     *                         of needle.
9534
     *                         </p>
9535
     * @param string $needle   <p>
9536
     *                         The string to find in haystack.
9537
     *                         </p>
9538
     * @param int    $offset   [optional] <p>
9539
     *                         The position in haystack
9540
     *                         to start searching.
9541
     *                         </p>
9542
     *
9543
     * @return false|int return the numeric position of the last occurrence of needle in the
9544
     *                   haystack string, or false if needle is not found
9545
     */
9546
    public static function strripos_in_byte(string $haystack, string $needle, int $offset = 0)
9547
    {
9548
        if ($haystack === '' || $needle === '') {
9549
            return false;
9550
        }
9551
9552
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
9553
            // "mb_" is available if overload is used, so use it ...
9554
            return \mb_strripos($haystack, $needle, $offset, 'CP850'); // 8-BIT
9555
        }
9556
9557
        return \strripos($haystack, $needle, $offset);
9558
    }
9559
9560
    /**
9561
     * Find position of last occurrence of a string in a string.
9562
     *
9563
     * @see http://php.net/manual/en/function.mb-strrpos.php
9564
     *
9565
     * @param string     $haystack  <p>The string being checked, for the last occurrence of needle</p>
9566
     * @param int|string $needle    <p>The string to find in haystack.<br>Or a code point as int.</p>
9567
     * @param int        $offset    [optional] <p>May be specified to begin searching an arbitrary number of characters
9568
     *                              into the string. Negative values will stop searching at an arbitrary point prior to
9569
     *                              the end of the string.
9570
     *                              </p>
9571
     * @param string     $encoding  [optional] <p>Set the charset.</p>
9572
     * @param bool       $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
9573
     *
9574
     * @return false|int
9575
     *                   The <strong>(int)</strong> numeric position of the last occurrence of needle in the haystack
9576
     *                   string.<br>If needle is not found, it returns false.
9577
     */
9578 35
    public static function strrpos(
9579
        string $haystack,
9580
        $needle,
9581
        int $offset = 0,
9582
        string $encoding = 'UTF-8',
9583
        bool $cleanUtf8 = false
9584
    ) {
9585 35
        if ($haystack === '') {
9586 3
            return false;
9587
        }
9588
9589
        // iconv and mbstring do not support integer $needle
9590 34
        if ((int) $needle === $needle && $needle >= 0) {
9591 2
            $needle = (string) self::chr($needle);
9592
        }
9593 34
        $needle = (string) $needle;
9594
9595 34
        if ($needle === '') {
9596 2
            return false;
9597
        }
9598
9599 34
        if ($cleanUtf8 === true) {
9600
            // \mb_strrpos && iconv_strrpos is not tolerant to invalid characters
9601 4
            $needle = self::clean($needle);
9602 4
            $haystack = self::clean($haystack);
9603
        }
9604
9605 34
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9606 8
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9607
        }
9608
9609
        //
9610
        // fallback via mbstring
9611
        //
9612
9613 34
        if (self::$SUPPORT['mbstring'] === true) {
9614 34
            if ($encoding === 'UTF-8') {
9615 34
                return \mb_strrpos($haystack, $needle, $offset);
9616
            }
9617
9618 2
            return \mb_strrpos($haystack, $needle, $offset, $encoding);
9619
        }
9620
9621
        //
9622
        // fallback for binary || ascii only
9623
        //
9624
9625
        if (
9626
            $encoding === 'CP850'
9627
            ||
9628
            $encoding === 'ASCII'
9629
        ) {
9630
            return \strrpos($haystack, $needle, $offset);
9631
        }
9632
9633
        if (
9634
            $encoding !== 'UTF-8'
9635
            &&
9636
            self::$SUPPORT['mbstring'] === false
9637
        ) {
9638
            \trigger_error('UTF8::strrpos() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
9639
        }
9640
9641
        //
9642
        // fallback via intl
9643
        //
9644
9645
        if (
9646
            $offset >= 0 // grapheme_strrpos() can't handle negative offset
9647
            &&
9648
            $encoding === 'UTF-8' // INFO: "grapheme_strrpos()" can't handle other encodings
9649
            &&
9650
            self::$SUPPORT['intl'] === true
9651
        ) {
9652
            $returnTmp = \grapheme_strrpos($haystack, $needle, $offset);
9653
            if ($returnTmp !== false) {
9654
                return $returnTmp;
9655
            }
9656
        }
9657
9658
        //
9659
        // fallback for ascii only
9660
        //
9661
9662
        if (self::is_ascii($haystack . $needle)) {
9663
            return \strrpos($haystack, $needle, $offset);
9664
        }
9665
9666
        //
9667
        // fallback via vanilla php
9668
        //
9669
9670
        $haystackTmp = null;
9671
        if ($offset > 0) {
9672
            $haystackTmp = self::substr($haystack, $offset);
9673
        } elseif ($offset < 0) {
9674
            $haystackTmp = self::substr($haystack, 0, $offset);
9675
            $offset = 0;
9676
        }
9677
9678
        if ($haystackTmp !== null) {
9679
            if ($haystackTmp === false) {
9680
                $haystackTmp = '';
9681
            }
9682
            $haystack = (string) $haystackTmp;
9683
        }
9684
9685
        $pos = \strrpos($haystack, $needle);
9686
        if ($pos === false) {
9687
            return false;
9688
        }
9689
9690
        $strTmp = \substr($haystack, 0, $pos);
9691
        if ($strTmp === false) {
9692
            return false;
9693
        }
9694
9695
        return $offset + (int) self::strlen($strTmp);
9696
    }
9697
9698
    /**
9699
     * Find position of last occurrence of a string in a string.
9700
     *
9701
     * @param string $haystack <p>
9702
     *                         The string being checked, for the last occurrence
9703
     *                         of needle.
9704
     *                         </p>
9705
     * @param string $needle   <p>
9706
     *                         The string to find in haystack.
9707
     *                         </p>
9708
     * @param int    $offset   [optional] May be specified to begin searching an arbitrary number of characters into
9709
     *                         the string. Negative values will stop searching at an arbitrary point
9710
     *                         prior to the end of the string.
9711
     *
9712
     * @return false|int The numeric position of the last occurrence of needle in the
9713
     *                   haystack string. If needle is not found, it returns false.
9714
     */
9715
    public static function strrpos_in_byte(string $haystack, string $needle, int $offset = 0)
9716
    {
9717
        if ($haystack === '' || $needle === '') {
9718
            return false;
9719
        }
9720
9721
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
9722
            // "mb_" is available if overload is used, so use it ...
9723
            return \mb_strrpos($haystack, $needle, $offset, 'CP850'); // 8-BIT
9724
        }
9725
9726
        return \strrpos($haystack, $needle, $offset);
9727
    }
9728
9729
    /**
9730
     * Finds the length of the initial segment of a string consisting entirely of characters contained within a given
9731
     * mask.
9732
     *
9733
     * @param string $str      <p>The input string.</p>
9734
     * @param string $mask     <p>The mask of chars</p>
9735
     * @param int    $offset   [optional]
9736
     * @param int    $length   [optional]
9737
     * @param string $encoding [optional] <p>Set the charset.</p>
9738
     *
9739
     * @return false|int
9740
     */
9741 10
    public static function strspn(
9742
        string $str,
9743
        string $mask,
9744
        int $offset = 0,
9745
        int $length = null,
9746
        string $encoding = 'UTF-8'
9747
    ) {
9748 10
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9749
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9750
        }
9751
9752 10
        if ($offset || $length !== null) {
9753 2
            if ($encoding === 'UTF-8') {
9754 2
                if ($length === null) {
9755
                    $str = (string) \mb_substr($str, $offset);
9756
                } else {
9757 2
                    $str = (string) \mb_substr($str, $offset, $length);
9758
                }
9759
            } else {
9760
                $str = (string) self::substr($str, $offset, $length, $encoding);
9761
            }
9762
        }
9763
9764 10
        if ($str === '' || $mask === '') {
9765 2
            return 0;
9766
        }
9767
9768 8
        $matches = [];
9769
9770 8
        return \preg_match('/^' . self::rxClass($mask) . '+/u', $str, $matches) ? (int) self::strlen($matches[0], $encoding) : 0;
9771
    }
9772
9773
    /**
9774
     * Returns part of haystack string from the first occurrence of needle to the end of haystack.
9775
     *
9776
     * @param string $haystack      <p>The input string. Must be valid UTF-8.</p>
9777
     * @param string $needle        <p>The string to look for. Must be valid UTF-8.</p>
9778
     * @param bool   $before_needle [optional] <p>
9779
     *                              If <b>TRUE</b>, strstr() returns the part of the
9780
     *                              haystack before the first occurrence of the needle (excluding the needle).
9781
     *                              </p>
9782
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
9783
     * @param bool   $cleanUtf8     [optional] <p>Remove non UTF-8 chars from the string.</p>
9784
     *
9785
     * @return false|string
9786
     *                      A sub-string,<br>or <strong>false</strong> if needle is not found
9787
     */
9788 3
    public static function strstr(
9789
        string $haystack,
9790
        string $needle,
9791
        bool $before_needle = false,
9792
        string $encoding = 'UTF-8',
9793
        $cleanUtf8 = false
9794
    ) {
9795 3
        if ($haystack === '' || $needle === '') {
9796 2
            return false;
9797
        }
9798
9799 3
        if ($cleanUtf8 === true) {
9800
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
9801
            // if invalid characters are found in $haystack before $needle
9802
            $needle = self::clean($needle);
9803
            $haystack = self::clean($haystack);
9804
        }
9805
9806 3
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
9807 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
9808
        }
9809
9810
        //
9811
        // fallback via mbstring
9812
        //
9813
9814 3
        if (self::$SUPPORT['mbstring'] === true) {
9815 3
            if ($encoding === 'UTF-8') {
9816 3
                return \mb_strstr($haystack, $needle, $before_needle);
9817
            }
9818
9819 2
            return \mb_strstr($haystack, $needle, $before_needle, $encoding);
9820
        }
9821
9822
        //
9823
        // fallback for binary || ascii only
9824
        //
9825
9826
        if (
9827
            $encoding === 'CP850'
9828
            ||
9829
            $encoding === 'ASCII'
9830
        ) {
9831
            return \strstr($haystack, $needle, $before_needle);
9832
        }
9833
9834
        if (
9835
            $encoding !== 'UTF-8'
9836
            &&
9837
            self::$SUPPORT['mbstring'] === false
9838
        ) {
9839
            \trigger_error('UTF8::strstr() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
9840
        }
9841
9842
        //
9843
        // fallback via intl
9844
        //
9845
9846
        if (
9847
            $encoding === 'UTF-8' // INFO: "grapheme_strstr()" can't handle other encodings
9848
            &&
9849
            self::$SUPPORT['intl'] === true
9850
        ) {
9851
            $returnTmp = \grapheme_strstr($haystack, $needle, $before_needle);
9852
            if ($returnTmp !== false) {
9853
                return $returnTmp;
9854
            }
9855
        }
9856
9857
        //
9858
        // fallback for ascii only
9859
        //
9860
9861
        if (self::is_ascii($haystack . $needle)) {
9862
            return \strstr($haystack, $needle, $before_needle);
9863
        }
9864
9865
        //
9866
        // fallback via vanilla php
9867
        //
9868
9869
        \preg_match('/^(.*?)' . \preg_quote($needle, '/') . '/us', $haystack, $match);
9870
9871
        if (!isset($match[1])) {
9872
            return false;
9873
        }
9874
9875
        if ($before_needle) {
9876
            return $match[1];
9877
        }
9878
9879
        return self::substr($haystack, (int) self::strlen($match[1]));
9880
    }
9881
9882
    /**
9883
     *  * Finds first occurrence of a string within another.
9884
     *
9885
     * @param string $haystack      <p>
9886
     *                              The string from which to get the first occurrence
9887
     *                              of needle.
9888
     *                              </p>
9889
     * @param string $needle        <p>
9890
     *                              The string to find in haystack.
9891
     *                              </p>
9892
     * @param bool   $before_needle [optional] <p>
9893
     *                              Determines which portion of haystack
9894
     *                              this function returns.
9895
     *                              If set to true, it returns all of haystack
9896
     *                              from the beginning to the first occurrence of needle.
9897
     *                              If set to false, it returns all of haystack
9898
     *                              from the first occurrence of needle to the end,
9899
     *                              </p>
9900
     *
9901
     * @return false|string the portion of haystack,
9902
     *                      or false if needle is not found
9903
     */
9904
    public static function strstr_in_byte(string $haystack, string $needle, bool $before_needle = false)
9905
    {
9906
        if ($haystack === '' || $needle === '') {
9907
            return false;
9908
        }
9909
9910
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
9911
            // "mb_" is available if overload is used, so use it ...
9912
            return \mb_strstr($haystack, $needle, $before_needle, 'CP850'); // 8-BIT
9913
        }
9914
9915
        return \strstr($haystack, $needle, $before_needle);
9916
    }
9917
9918
    /**
9919
     * Unicode transformation for case-less matching.
9920
     *
9921
     * @see http://unicode.org/reports/tr21/tr21-5.html
9922
     *
9923
     * @param string      $str       <p>The input string.</p>
9924
     * @param bool        $full      [optional] <p>
9925
     *                               <b>true</b>, replace full case folding chars (default)<br>
9926
     *                               <b>false</b>, use only limited static array [UTF8::$COMMON_CASE_FOLD]
9927
     *                               </p>
9928
     * @param bool        $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
9929
     * @param string      $encoding  [optional] <p>Set the charset.</p>
9930
     * @param string|null $lang      [optional] <p>Set the language for special cases: az, el, lt, tr</p>
9931
     * @param bool        $lower     [optional] <p>Use lowercase string, otherwise use uppercase string. PS: uppercase
9932
     *                               is for some languages better ...</p>
9933
     *
9934
     * @return string
9935
     */
9936 32
    public static function strtocasefold(
9937
        string $str,
9938
        bool $full = true,
9939
        bool $cleanUtf8 = false,
9940
        string $encoding = 'UTF-8',
9941
        string $lang = null,
9942
        $lower = true
9943
    ): string {
9944 32
        if ($str === '') {
9945 5
            return '';
9946
        }
9947
9948 31
        if ($cleanUtf8 === true) {
9949
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
9950
            // if invalid characters are found in $haystack before $needle
9951 2
            $str = self::clean($str);
9952
        }
9953
9954 31
        $str = self::fixStrCaseHelper($str, $lower, $full);
9955
9956 31
        if ($lang === null && $encoding === 'UTF-8') {
9957 31
            if ($lower === true) {
9958 2
                return \mb_strtolower($str);
9959
            }
9960
9961 29
            return \mb_strtoupper($str);
9962
        }
9963
9964 2
        if ($lower === true) {
9965
            return self::strtolower($str, $encoding, false, $lang);
9966
        }
9967
9968 2
        return self::strtoupper($str, $encoding, false, $lang);
9969
    }
9970
9971
    /**
9972
     * Make a string lowercase.
9973
     *
9974
     * @see http://php.net/manual/en/function.mb-strtolower.php
9975
     *
9976
     * @param string      $str                   <p>The string being lowercased.</p>
9977
     * @param string      $encoding              [optional] <p>Set the charset for e.g. "mb_" function</p>
9978
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
9979
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
9980
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
9981
     *
9982
     * @return string
9983
     *                <p>String with all alphabetic characters converted to lowercase.</p>
9984
     */
9985 73
    public static function strtolower(
9986
        $str,
9987
        string $encoding = 'UTF-8',
9988
        bool $cleanUtf8 = false,
9989
        string $lang = null,
9990
        bool $tryToKeepStringLength = false
9991
    ): string {
9992
        // init
9993 73
        $str = (string) $str;
9994
9995 73
        if ($str === '') {
9996 1
            return '';
9997
        }
9998
9999 72
        if ($cleanUtf8 === true) {
10000
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
10001
            // if invalid characters are found in $haystack before $needle
10002 2
            $str = self::clean($str);
10003
        }
10004
10005
        // hack for old php version or for the polyfill ...
10006 72
        if ($tryToKeepStringLength === true) {
10007
            $str = self::fixStrCaseHelper($str, true);
10008
        }
10009
10010 72
        if ($lang === null && $encoding === 'UTF-8') {
10011 13
            return \mb_strtolower($str);
10012
        }
10013
10014 61
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
10015
10016 61
        if ($lang !== null) {
10017 2
            if (self::$SUPPORT['intl'] === true) {
10018 2
                if (self::$INTL_TRANSLITERATOR_LIST === null) {
10019
                    self::$INTL_TRANSLITERATOR_LIST = self::getData('transliterator_list');
10020
                }
10021
10022 2
                $langCode = $lang . '-Lower';
10023 2
                if (!\in_array($langCode, self::$INTL_TRANSLITERATOR_LIST, true)) {
10024
                    \trigger_error('UTF8::strtolower() cannot handle special language: ' . $lang, \E_USER_WARNING);
10025
10026
                    $langCode = 'Any-Lower';
10027
                }
10028
10029
                /** @noinspection PhpComposerExtensionStubsInspection */
10030
                /** @noinspection UnnecessaryCastingInspection */
10031 2
                return (string) \transliterator_transliterate($langCode, $str);
10032
            }
10033
10034
            \trigger_error('UTF8::strtolower() without intl cannot handle the "lang" parameter: ' . $lang, \E_USER_WARNING);
10035
        }
10036
10037
        // always fallback via symfony polyfill
10038 61
        return \mb_strtolower($str, $encoding);
10039
    }
10040
10041
    /**
10042
     * Make a string uppercase.
10043
     *
10044
     * @see http://php.net/manual/en/function.mb-strtoupper.php
10045
     *
10046
     * @param string      $str                   <p>The string being uppercased.</p>
10047
     * @param string      $encoding              [optional] <p>Set the charset.</p>
10048
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
10049
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
10050
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
10051
     *
10052
     * @return string
10053
     *                <p>String with all alphabetic characters converted to uppercase.</p>
10054
     */
10055 17
    public static function strtoupper(
10056
        $str,
10057
        string $encoding = 'UTF-8',
10058
        bool $cleanUtf8 = false,
10059
        string $lang = null,
10060
        bool $tryToKeepStringLength = false
10061
    ): string {
10062
        // init
10063 17
        $str = (string) $str;
10064
10065 17
        if ($str === '') {
10066 1
            return '';
10067
        }
10068
10069 16
        if ($cleanUtf8 === true) {
10070
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
10071
            // if invalid characters are found in $haystack before $needle
10072 2
            $str = self::clean($str);
10073
        }
10074
10075
        // hack for old php version or for the polyfill ...
10076 16
        if ($tryToKeepStringLength === true) {
10077 2
            $str = self::fixStrCaseHelper($str, false);
10078
        }
10079
10080 16
        if ($lang === null && $encoding === 'UTF-8') {
10081 8
            return \mb_strtoupper($str);
10082
        }
10083
10084 10
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
10085
10086 10
        if ($lang !== null) {
10087 2
            if (self::$SUPPORT['intl'] === true) {
10088 2
                if (self::$INTL_TRANSLITERATOR_LIST === null) {
10089
                    self::$INTL_TRANSLITERATOR_LIST = self::getData('transliterator_list');
10090
                }
10091
10092 2
                $langCode = $lang . '-Upper';
10093 2
                if (!\in_array($langCode, self::$INTL_TRANSLITERATOR_LIST, true)) {
10094
                    \trigger_error('UTF8::strtoupper() without intl for special language: ' . $lang, \E_USER_WARNING);
10095
10096
                    $langCode = 'Any-Upper';
10097
                }
10098
10099
                /** @noinspection PhpComposerExtensionStubsInspection */
10100
                /** @noinspection UnnecessaryCastingInspection */
10101 2
                return (string) \transliterator_transliterate($langCode, $str);
10102
            }
10103
10104
            \trigger_error('UTF8::strtolower() without intl cannot handle the "lang"-parameter: ' . $lang, \E_USER_WARNING);
10105
        }
10106
10107
        // always fallback via symfony polyfill
10108 10
        return \mb_strtoupper($str, $encoding);
10109
    }
10110
10111
    /**
10112
     * Translate characters or replace sub-strings.
10113
     *
10114
     * @see http://php.net/manual/en/function.strtr.php
10115
     *
10116
     * @param string          $str  <p>The string being translated.</p>
10117
     * @param string|string[] $from <p>The string replacing from.</p>
10118
     * @param string|string[] $to   [optional] <p>The string being translated to to.</p>
10119
     *
10120
     * @return string
10121
     *                This function returns a copy of str, translating all occurrences of each character in from to the
10122
     *                corresponding character in to
10123
     */
10124 2
    public static function strtr(string $str, $from, $to = ''): string
10125
    {
10126 2
        if ($str === '') {
10127
            return '';
10128
        }
10129
10130 2
        if ($from === $to) {
10131
            return $str;
10132
        }
10133
10134 2
        if ($to !== '') {
10135 2
            $from = self::str_split($from);
10136 2
            $to = self::str_split($to);
10137 2
            $countFrom = \count($from);
10138 2
            $countTo = \count($to);
10139
10140 2
            if ($countFrom > $countTo) {
10141 2
                $from = \array_slice($from, 0, $countTo);
10142 2
            } elseif ($countFrom < $countTo) {
10143 2
                $to = \array_slice($to, 0, $countFrom);
10144
            }
10145
10146 2
            $from = \array_combine($from, $to);
10147 2
            if ($from === false) {
10148
                throw new \InvalidArgumentException('The number of elements for each array isn\'t equal or the arrays are empty: (from: ' . \print_r($from, true) . ' | to: ' . \print_r($to, true) . ')');
10149
            }
10150
        }
10151
10152 2
        if (\is_string($from)) {
10153 2
            return \str_replace($from, '', $str);
10154
        }
10155
10156 2
        return \strtr($str, $from);
10157
    }
10158
10159
    /**
10160
     * Return the width of a string.
10161
     *
10162
     * @param string $str       <p>The input string.</p>
10163
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
10164
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
10165
     *
10166
     * @return int
10167
     */
10168 2
    public static function strwidth(string $str, string $encoding = 'UTF-8', bool $cleanUtf8 = false): int
10169
    {
10170 2
        if ($str === '') {
10171 2
            return 0;
10172
        }
10173
10174 2
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
10175 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
10176
        }
10177
10178 2
        if ($cleanUtf8 === true) {
10179
            // iconv and mbstring are not tolerant to invalid encoding
10180
            // further, their behaviour is inconsistent with that of PHP's substr
10181 2
            $str = self::clean($str);
10182
        }
10183
10184
        //
10185
        // fallback via mbstring
10186
        //
10187
10188 2
        if (self::$SUPPORT['mbstring'] === true) {
10189 2
            if ($encoding === 'UTF-8') {
10190 2
                return \mb_strwidth($str);
10191
            }
10192
10193
            return \mb_strwidth($str, $encoding);
10194
        }
10195
10196
        //
10197
        // fallback via vanilla php
10198
        //
10199
10200
        if ($encoding !== 'UTF-8') {
10201
            $str = self::encode('UTF-8', $str, false, $encoding);
10202
        }
10203
10204
        $wide = 0;
10205
        $str = (string) \preg_replace('/[\x{1100}-\x{115F}\x{2329}\x{232A}\x{2E80}-\x{303E}\x{3040}-\x{A4CF}\x{AC00}-\x{D7A3}\x{F900}-\x{FAFF}\x{FE10}-\x{FE19}\x{FE30}-\x{FE6F}\x{FF00}-\x{FF60}\x{FFE0}-\x{FFE6}\x{20000}-\x{2FFFD}\x{30000}-\x{3FFFD}]/u', '', $str, -1, $wide);
10206
10207
        return ($wide << 1) + (int) self::strlen($str, 'UTF-8');
10208
    }
10209
10210
    /**
10211
     * Get part of a string.
10212
     *
10213
     * @see http://php.net/manual/en/function.mb-substr.php
10214
     *
10215
     * @param string $str       <p>The string being checked.</p>
10216
     * @param int    $offset    <p>The first position used in str.</p>
10217
     * @param int    $length    [optional] <p>The maximum length of the returned string.</p>
10218
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
10219
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
10220
     *
10221
     * @return false|string
10222
     *                      The portion of <i>str</i> specified by the <i>offset</i> and
10223
     *                      <i>length</i> parameters.</p><p>If <i>str</i> is shorter than <i>offset</i>
10224
     *                      characters long, <b>FALSE</b> will be returned.
10225
     */
10226 172
    public static function substr(
10227
        string $str,
10228
        int $offset = 0,
10229
        int $length = null,
10230
        string $encoding = 'UTF-8',
10231
        bool $cleanUtf8 = false
10232
    ) {
10233
        // empty string
10234 172
        if ($str === '' || $length === 0) {
10235 8
            return '';
10236
        }
10237
10238 168
        if ($cleanUtf8 === true) {
10239
            // iconv and mbstring are not tolerant to invalid encoding
10240
            // further, their behaviour is inconsistent with that of PHP's substr
10241 2
            $str = self::clean($str);
10242
        }
10243
10244
        // whole string
10245 168
        if (!$offset && $length === null) {
10246 7
            return $str;
10247
        }
10248
10249 163
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
10250 19
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
10251
        }
10252
10253
        //
10254
        // fallback via mbstring
10255
        //
10256
10257 163
        if (self::$SUPPORT['mbstring'] === true) {
10258 161
            if ($encoding === 'UTF-8') {
10259 161
                if ($length === null) {
10260 64
                    return \mb_substr($str, $offset);
10261
                }
10262
10263 102
                return \mb_substr($str, $offset, $length);
10264
            }
10265
10266
            return self::substr($str, $offset, $length, $encoding);
10267
        }
10268
10269
        //
10270
        // fallback for binary || ascii only
10271
        //
10272
10273
        if (
10274 4
            $encoding === 'CP850'
10275
            ||
10276 4
            $encoding === 'ASCII'
10277
        ) {
10278
            if ($length === null) {
10279
                return \substr($str, $offset);
10280
            }
10281
10282
            return \substr($str, $offset, $length);
10283
        }
10284
10285
        // otherwise we need the string-length
10286 4
        $str_length = 0;
10287 4
        if ($offset || $length === null) {
10288 4
            $str_length = self::strlen($str, $encoding);
10289
        }
10290
10291
        // e.g.: invalid chars + mbstring not installed
10292 4
        if ($str_length === false) {
10293
            return false;
10294
        }
10295
10296
        // empty string
10297 4
        if ($offset === $str_length && !$length) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $length of type integer|null is loosely compared to false; this is ambiguous if the integer can be 0. You might want to explicitly use === null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For integer values, zero is a special case, in particular the following results might be unexpected:

0   == false // true
0   == null  // true
123 == false // false
123 == null  // false

// It is often better to use strict comparison
0 === false // false
0 === null  // false
Loading history...
10298
            return '';
10299
        }
10300
10301
        // impossible
10302 4
        if ($offset && $offset > $str_length) {
10303
            return '';
10304
        }
10305
10306 4
        if ($length === null) {
10307 4
            $length = (int) $str_length;
10308
        } else {
10309 2
            $length = (int) $length;
10310
        }
10311
10312
        if (
10313 4
            $encoding !== 'UTF-8'
10314
            &&
10315 4
            self::$SUPPORT['mbstring'] === false
10316
        ) {
10317 2
            \trigger_error('UTF8::substr() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
10318
        }
10319
10320
        //
10321
        // fallback via intl
10322
        //
10323
10324
        if (
10325 4
            $encoding === 'UTF-8' // INFO: "grapheme_substr()" can't handle other encodings
10326
            &&
10327 4
            $offset >= 0 // grapheme_substr() can't handle negative offset
10328
            &&
10329 4
            self::$SUPPORT['intl'] === true
10330
        ) {
10331
            $returnTmp = \grapheme_substr($str, $offset, $length);
10332
            if ($returnTmp !== false) {
10333
                return $returnTmp;
10334
            }
10335
        }
10336
10337
        //
10338
        // fallback via iconv
10339
        //
10340
10341
        if (
10342 4
            $length >= 0 // "iconv_substr()" can't handle negative length
10343
            &&
10344 4
            self::$SUPPORT['iconv'] === true
10345
        ) {
10346
            $returnTmp = \iconv_substr($str, $offset, $length);
10347
            if ($returnTmp !== false) {
10348
                return $returnTmp;
10349
            }
10350
        }
10351
10352
        //
10353
        // fallback for ascii only
10354
        //
10355
10356 4
        if (self::is_ascii($str)) {
10357
            return \substr($str, $offset, $length);
10358
        }
10359
10360
        //
10361
        // fallback via vanilla php
10362
        //
10363
10364
        // split to array, and remove invalid characters
10365 4
        $array = self::str_split($str);
10366
10367
        // extract relevant part, and join to make sting again
10368 4
        return \implode('', \array_slice($array, $offset, $length));
10369
    }
10370
10371
    /**
10372
     * Binary safe comparison of two strings from an offset, up to length characters.
10373
     *
10374
     * @param string   $str1               <p>The main string being compared.</p>
10375
     * @param string   $str2               <p>The secondary string being compared.</p>
10376
     * @param int      $offset             [optional] <p>The start position for the comparison. If negative, it starts
10377
     *                                     counting from the end of the string.</p>
10378
     * @param int|null $length             [optional] <p>The length of the comparison. The default value is the largest
10379
     *                                     of the length of the str compared to the length of main_str less the
10380
     *                                     offset.</p>
10381
     * @param bool     $case_insensitivity [optional] <p>If case_insensitivity is TRUE, comparison is case
10382
     *                                     insensitive.</p>
10383
     * @param string   $encoding           [optional] <p>Set the charset for e.g. "mb_" function</p>
10384
     *
10385
     * @return int
10386
     *             <strong>&lt; 0</strong> if str1 is less than str2;<br>
10387
     *             <strong>&gt; 0</strong> if str1 is greater than str2,<br>
10388
     *             <strong>0</strong> if they are equal
10389
     */
10390 2
    public static function substr_compare(
10391
        string $str1,
10392
        string $str2,
10393
        int $offset = 0,
10394
        int $length = null,
10395
        bool $case_insensitivity = false,
10396
        string $encoding = 'UTF-8'
10397
    ): int {
10398
        if (
10399 2
            $offset !== 0
10400
            ||
10401 2
            $length !== null
10402
        ) {
10403 2
            if ($encoding === 'UTF-8') {
10404 2
                if ($length === null) {
10405 2
                    $str1 = (string) \mb_substr($str1, $offset);
10406
                } else {
10407 2
                    $str1 = (string) \mb_substr($str1, $offset, $length);
10408
                }
10409 2
                $str2 = (string) \mb_substr($str2, 0, (int) self::strlen($str1));
10410
            } else {
10411
                $encoding = self::normalize_encoding($encoding, 'UTF-8');
10412
10413
                $str1 = (string) self::substr($str1, $offset, $length, $encoding);
10414
                $str2 = (string) self::substr($str2, 0, (int) self::strlen($str1), $encoding);
10415
            }
10416
        }
10417
10418 2
        if ($case_insensitivity === true) {
10419 2
            return self::strcasecmp($str1, $str2, $encoding);
10420
        }
10421
10422 2
        return self::strcmp($str1, $str2);
10423
    }
10424
10425
    /**
10426
     * Count the number of substring occurrences.
10427
     *
10428
     * @see http://php.net/manual/en/function.substr-count.php
10429
     *
10430
     * @param string $haystack  <p>The string to search in.</p>
10431
     * @param string $needle    <p>The substring to search for.</p>
10432
     * @param int    $offset    [optional] <p>The offset where to start counting.</p>
10433
     * @param int    $length    [optional] <p>
10434
     *                          The maximum length after the specified offset to search for the
10435
     *                          substring. It outputs a warning if the offset plus the length is
10436
     *                          greater than the haystack length.
10437
     *                          </p>
10438
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
10439
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
10440
     *
10441
     * @return false|int this functions returns an integer or false if there isn't a string
10442
     */
10443 5
    public static function substr_count(
10444
        string $haystack,
10445
        string $needle,
10446
        int $offset = 0,
10447
        int $length = null,
10448
        string $encoding = 'UTF-8',
10449
        bool $cleanUtf8 = false
10450
    ) {
10451 5
        if ($haystack === '' || $needle === '') {
10452 2
            return false;
10453
        }
10454
10455 5
        if ($length === 0) {
10456 2
            return 0;
10457
        }
10458
10459 5
        if ($encoding !== 'UTF-8' && $encoding !== 'CP850') {
10460 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
10461
        }
10462
10463 5
        if ($cleanUtf8 === true) {
10464
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
10465
            // if invalid characters are found in $haystack before $needle
10466
            $needle = self::clean($needle);
10467
            $haystack = self::clean($haystack);
10468
        }
10469
10470 5
        if ($offset || $length > 0) {
10471 2
            if ($length === null) {
10472 2
                $lengthTmp = self::strlen($haystack, $encoding);
10473 2
                if ($lengthTmp === false) {
10474
                    return false;
10475
                }
10476 2
                $length = (int) $lengthTmp;
10477
            }
10478
10479 2
            if ($encoding === 'UTF-8') {
10480 2
                $haystack = (string) \mb_substr($haystack, $offset, $length);
10481
            } else {
10482 2
                $haystack = (string) \mb_substr($haystack, $offset, $length, $encoding);
10483
            }
10484
        }
10485
10486
        if (
10487 5
            $encoding !== 'UTF-8'
10488
            &&
10489 5
            self::$SUPPORT['mbstring'] === false
10490
        ) {
10491
            \trigger_error('UTF8::substr_count() without mbstring cannot handle "' . $encoding . '" encoding', \E_USER_WARNING);
10492
        }
10493
10494 5
        if (self::$SUPPORT['mbstring'] === true) {
10495 5
            if ($encoding === 'UTF-8') {
10496 5
                return \mb_substr_count($haystack, $needle);
10497
            }
10498
10499 2
            return \mb_substr_count($haystack, $needle, $encoding);
10500
        }
10501
10502
        \preg_match_all('/' . \preg_quote($needle, '/') . '/us', $haystack, $matches, \PREG_SET_ORDER);
10503
10504
        return \count($matches);
10505
    }
10506
10507
    /**
10508
     * Count the number of substring occurrences.
10509
     *
10510
     * @param string $haystack <p>
10511
     *                         The string being checked.
10512
     *                         </p>
10513
     * @param string $needle   <p>
10514
     *                         The string being found.
10515
     *                         </p>
10516
     * @param int    $offset   [optional] <p>
10517
     *                         The offset where to start counting
10518
     *                         </p>
10519
     * @param int    $length   [optional] <p>
10520
     *                         The maximum length after the specified offset to search for the
10521
     *                         substring. It outputs a warning if the offset plus the length is
10522
     *                         greater than the haystack length.
10523
     *                         </p>
10524
     *
10525
     * @return false|int the number of times the
10526
     *                   needle substring occurs in the
10527
     *                   haystack string
10528
     */
10529
    public static function substr_count_in_byte(
10530
        string $haystack,
10531
        string $needle,
10532
        int $offset = 0,
10533
        int $length = null
10534
    ) {
10535
        if ($haystack === '' || $needle === '') {
10536
            return 0;
10537
        }
10538
10539
        if (
10540
            ($offset || $length !== null)
10541
            &&
10542
            self::$SUPPORT['mbstring_func_overload'] === true
10543
        ) {
10544
            if ($length === null) {
10545
                $lengthTmp = self::strlen($haystack);
10546
                if ($lengthTmp === false) {
10547
                    return false;
10548
                }
10549
                $length = (int) $lengthTmp;
10550
            }
10551
10552
            if (
10553
                (
10554
                    $length !== 0
10555
                    &&
10556
                    $offset !== 0
10557
                )
10558
                &&
10559
                ($length + $offset) <= 0
10560
                &&
10561
                Bootup::is_php('7.1') === false // output from "substr_count()" have changed in PHP 7.1
10562
            ) {
10563
                return false;
10564
            }
10565
10566
            $haystackTmp = \substr($haystack, $offset, $length);
10567
            if ($haystackTmp === false) {
10568
                $haystackTmp = '';
10569
            }
10570
            $haystack = (string) $haystackTmp;
10571
        }
10572
10573
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
10574
            // "mb_" is available if overload is used, so use it ...
10575
            return \mb_substr_count($haystack, $needle, 'CP850'); // 8-BIT
10576
        }
10577
10578
        if ($length === null) {
10579
            return \substr_count($haystack, $needle, $offset);
10580
        }
10581
10582
        return \substr_count($haystack, $needle, $offset, $length);
10583
    }
10584
10585
    /**
10586
     * Returns the number of occurrences of $substring in the given string.
10587
     * By default, the comparison is case-sensitive, but can be made insensitive
10588
     * by setting $caseSensitive to false.
10589
     *
10590
     * @param string $str           <p>The input string.</p>
10591
     * @param string $substring     <p>The substring to search for.</p>
10592
     * @param bool   $caseSensitive [optional] <p>Whether or not to enforce case-sensitivity. Default: true</p>
10593
     * @param string $encoding      [optional] <p>Set the charset for e.g. "mb_" function</p>
10594
     *
10595
     * @return int
10596
     */
10597 15
    public static function substr_count_simple(
10598
        string $str,
10599
        string $substring,
10600
        bool $caseSensitive = true,
10601
        string $encoding = 'UTF-8'
10602
    ): int {
10603 15
        if ($str === '' || $substring === '') {
10604 2
            return 0;
10605
        }
10606
10607 13
        if ($encoding === 'UTF-8') {
10608 7
            if ($caseSensitive) {
10609
                return (int) \mb_substr_count($str, $substring);
10610
            }
10611
10612 7
            return (int) \mb_substr_count(
10613 7
                \mb_strtoupper($str),
10614 7
                \mb_strtoupper($substring)
10615
10616
            );
10617
        }
10618
10619 6
        $encoding = self::normalize_encoding($encoding, 'UTF-8');
10620
10621 6
        if ($caseSensitive) {
10622 3
            return (int) \mb_substr_count($str, $substring, $encoding);
10623
        }
10624
10625 3
        return (int) \mb_substr_count(
10626 3
            self::strtocasefold($str, true, false, $encoding, null, false),
10627 3
            self::strtocasefold($substring, true, false, $encoding, null, false),
10628 3
            $encoding
10629
        );
10630
    }
10631
10632
    /**
10633
     * Removes an prefix ($needle) from start of the string ($haystack), case insensitive.
10634
     *
10635
     * @param string $haystack <p>The string to search in.</p>
10636
     * @param string $needle   <p>The substring to search for.</p>
10637
     *
10638
     * @return string return the sub-string
10639
     */
10640 2
    public static function substr_ileft(string $haystack, string $needle): string
10641
    {
10642 2
        if ($haystack === '') {
10643 2
            return '';
10644
        }
10645
10646 2
        if ($needle === '') {
10647 2
            return $haystack;
10648
        }
10649
10650 2
        if (self::str_istarts_with($haystack, $needle) === true) {
10651 2
            $haystack = (string) \mb_substr($haystack, (int) self::strlen($needle));
10652
        }
10653
10654 2
        return $haystack;
10655
    }
10656
10657
    /**
10658
     * Get part of a string process in bytes.
10659
     *
10660
     * @param string $str    <p>The string being checked.</p>
10661
     * @param int    $offset <p>The first position used in str.</p>
10662
     * @param int    $length [optional] <p>The maximum length of the returned string.</p>
10663
     *
10664
     * @return false|string
10665
     *                      The portion of <i>str</i> specified by the <i>offset</i> and
10666
     *                      <i>length</i> parameters.</p><p>If <i>str</i> is shorter than <i>offset</i>
10667
     *                      characters long, <b>FALSE</b> will be returned.
10668
     */
10669
    public static function substr_in_byte(string $str, int $offset = 0, int $length = null)
10670
    {
10671
        // empty string
10672
        if ($str === '' || $length === 0) {
10673
            return '';
10674
        }
10675
10676
        // whole string
10677
        if (!$offset && $length === null) {
10678
            return $str;
10679
        }
10680
10681
        if (self::$SUPPORT['mbstring_func_overload'] === true) {
10682
            // "mb_" is available if overload is used, so use it ...
10683
            return \mb_substr($str, $offset, $length, 'CP850'); // 8-BIT
10684
        }
10685
10686
        return \substr($str, $offset, $length ?? 2147483647);
10687
    }
10688
10689
    /**
10690
     * Removes an suffix ($needle) from end of the string ($haystack), case insensitive.
10691
     *
10692
     * @param string $haystack <p>The string to search in.</p>
10693
     * @param string $needle   <p>The substring to search for.</p>
10694
     *
10695
     * @return string return the sub-string
10696
     */
10697 2
    public static function substr_iright(string $haystack, string $needle): string
10698
    {
10699 2
        if ($haystack === '') {
10700 2
            return '';
10701
        }
10702
10703 2
        if ($needle === '') {
10704 2
            return $haystack;
10705
        }
10706
10707 2
        if (self::str_iends_with($haystack, $needle) === true) {
10708 2
            $haystack = (string) \mb_substr($haystack, 0, (int) self::strlen($haystack) - (int) self::strlen($needle));
10709
        }
10710
10711 2
        return $haystack;
10712
    }
10713
10714
    /**
10715
     * Removes an prefix ($needle) from start of the string ($haystack).
10716
     *
10717
     * @param string $haystack <p>The string to search in.</p>
10718
     * @param string $needle   <p>The substring to search for.</p>
10719
     *
10720
     * @return string return the sub-string
10721
     */
10722 2
    public static function substr_left(string $haystack, string $needle): string
10723
    {
10724 2
        if ($haystack === '') {
10725 2
            return '';
10726
        }
10727
10728 2
        if ($needle === '') {
10729 2
            return $haystack;
10730
        }
10731
10732 2
        if (self::str_starts_with($haystack, $needle) === true) {
10733 2
            $haystack = (string) \mb_substr($haystack, (int) self::strlen($needle));
10734
        }
10735
10736 2
        return $haystack;
10737
    }
10738
10739
    /**
10740
     * Replace text within a portion of a string.
10741
     *
10742
     * source: https://gist.github.com/stemar/8287074
10743
     *
10744
     * @param string|string[] $str         <p>The input string or an array of stings.</p>
10745
     * @param string|string[] $replacement <p>The replacement string or an array of stings.</p>
10746
     * @param int|int[]       $offset      <p>
10747
     *                                     If start is positive, the replacing will begin at the start'th offset
10748
     *                                     into string.
10749
     *                                     <br><br>
10750
     *                                     If start is negative, the replacing will begin at the start'th character
10751
     *                                     from the end of string.
10752
     *                                     </p>
10753
     * @param int|int[]|null  $length      [optional] <p>If given and is positive, it represents the length of the
10754
     *                                     portion of string which is to be replaced. If it is negative, it
10755
     *                                     represents the number of characters from the end of string at which to
10756
     *                                     stop replacing. If it is not given, then it will default to strlen(
10757
     *                                     string ); i.e. end the replacing at the end of string. Of course, if
10758
     *                                     length is zero then this function will have the effect of inserting
10759
     *                                     replacement into string at the given start offset.</p>
10760
     * @param string          $encoding    [optional] <p>Set the charset for e.g. "mb_" function</p>
10761
     *
10762
     * @return string|string[] The result string is returned. If string is an array then array is returned.
10763
     */
10764 10
    public static function substr_replace(
10765
        $str,
10766
        $replacement,
10767
        $offset,
10768
        $length = null,
10769
        string $encoding = 'UTF-8'
10770
    ) {
10771 10
        if (\is_array($str) === true) {
10772 1
            $num = \count($str);
10773
10774
            // the replacement
10775 1
            if (\is_array($replacement) === true) {
10776 1
                $replacement = \array_slice($replacement, 0, $num);
10777
            } else {
10778 1
                $replacement = \array_pad([$replacement], $num, $replacement);
10779
            }
10780
10781
            // the offset
10782 1
            if (\is_array($offset) === true) {
10783 1
                $offset = \array_slice($offset, 0, $num);
10784 1
                foreach ($offset as &$valueTmp) {
10785 1
                    $valueTmp = (int) $valueTmp === $valueTmp ? $valueTmp : 0;
10786
                }
10787 1
                unset($valueTmp);
10788
            } else {
10789 1
                $offset = \array_pad([$offset], $num, $offset);
10790
            }
10791
10792
            // the length
10793 1
            if ($length === null) {
10794 1
                $length = \array_fill(0, $num, 0);
10795 1
            } elseif (\is_array($length) === true) {
10796 1
                $length = \array_slice($length, 0, $num);
10797 1
                foreach ($length as &$valueTmpV2) {
10798 1
                    $valueTmpV2 = (int) $valueTmpV2 === $valueTmpV2 ? $valueTmpV2 : $num;
10799
                }
10800 1
                unset($valueTmpV2);
10801
            } else {
10802 1
                $length = \array_pad([$length], $num, $length);
10803
            }
10804
10805
            // recursive call
10806 1
            return \array_map([self::class, 'substr_replace'], $str, $replacement, $offset, $length);
10807
        }
10808
10809 10
        if (\is_array($replacement) === true) {
10810 1
            if (\count($replacement) > 0) {
10811 1
                $replacement = $replacement[0];
10812
            } else {
10813 1
                $replacement = '';
10814
            }
10815
        }
10816
10817
        // init
10818 10
        $str = (string) $str;
10819 10
        $replacement = (string) $replacement;
10820
10821 10
        if (\is_array($length) === true) {
10822
            throw new \InvalidArgumentException('Parameter "$length" can only be an array, if "$str" is also an array.');
10823
        }
10824
10825 10
        if (\is_array($offset) === true) {
10826
            throw new \InvalidArgumentException('Parameter "$offset" can only be an array, if "$str" is also an array.');
10827
        }
10828
10829 10
        if ($str === '') {
10830 1
            return $replacement;
10831
        }
10832
10833 9
        if (self::$SUPPORT['mbstring'] === true) {
10834 9
            $string_length = (int) self::strlen($str, $encoding);
10835
10836 9
            if ($offset < 0) {
10837 1
                $offset = (int) \max(0, $string_length + $offset);
10838 9
            } elseif ($offset > $string_length) {
10839 1
                $offset = $string_length;
10840
            }
10841
10842 9
            if ($length !== null && $length < 0) {
10843 1
                $length = (int) \max(0, $string_length - $offset + $length);
10844 9
            } elseif ($length === null || $length > $string_length) {
10845 4
                $length = $string_length;
10846
            }
10847
10848
            /** @noinspection AdditionOperationOnArraysInspection */
10849 9
            if (($offset + $length) > $string_length) {
10850 4
                $length = $string_length - $offset;
10851
            }
10852
10853
            /** @noinspection AdditionOperationOnArraysInspection */
10854 9
            return ((string) \mb_substr($str, 0, $offset, $encoding)) .
10855 9
                   $replacement .
10856 9
                   ((string) \mb_substr($str, $offset + $length, $string_length - $offset - $length, $encoding));
10857
        }
10858
10859
        //
10860
        // fallback for ascii only
10861
        //
10862
10863
        if (self::is_ascii($str)) {
10864
            return ($length === null) ?
10865
                \substr_replace($str, $replacement, $offset) :
10866
                \substr_replace($str, $replacement, $offset, $length);
10867
        }
10868
10869
        //
10870
        // fallback via vanilla php
10871
        //
10872
10873
        \preg_match_all('/./us', $str, $smatches);
10874
        \preg_match_all('/./us', $replacement, $rmatches);
10875
10876
        if ($length === null) {
10877
            $lengthTmp = self::strlen($str, $encoding);
10878
            if ($lengthTmp === false) {
10879
                // e.g.: non mbstring support + invalid chars
10880
                return '';
10881
            }
10882
            $length = (int) $lengthTmp;
10883
        }
10884
10885
        \array_splice($smatches[0], $offset, $length, $rmatches[0]);
10886
10887
        return \implode('', $smatches[0]);
10888
    }
10889
10890
    /**
10891
     * Removes an suffix ($needle) from end of the string ($haystack).
10892
     *
10893
     * @param string $haystack <p>The string to search in.</p>
10894
     * @param string $needle   <p>The substring to search for.</p>
10895
     * @param string $encoding [optional] <p>Set the charset for e.g. "mb_" function</p>
10896
     *
10897
     * @return string return the sub-string
10898
     */
10899 2
    public static function substr_right(
10900
        string $haystack,
10901
        string $needle,
10902
        string $encoding = 'UTF-8'
10903
    ): string {
10904 2
        if ($haystack === '') {
10905 2
            return '';
10906
        }
10907
10908 2
        if ($needle === '') {
10909 2
            return $haystack;
10910
        }
10911
10912
        if (
10913 2
            $encoding === 'UTF-8'
10914
            &&
10915 2
            \substr($haystack, -\strlen($needle)) === $needle
10916
        ) {
10917 2
            return (string) \mb_substr($haystack, 0, (int) \mb_strlen($haystack) - (int) \mb_strlen($needle));
10918
        }
10919
10920 2
        if (\substr($haystack, -\strlen($needle)) === $needle) {
10921
            return (string) self::substr(
10922
                $haystack,
10923
                0,
10924
                (int) self::strlen($haystack, $encoding) - (int) self::strlen($needle, $encoding),
10925
                $encoding
10926
            );
10927
        }
10928
10929 2
        return $haystack;
10930
    }
10931
10932
    /**
10933
     * Returns a case swapped version of the string.
10934
     *
10935
     * @param string $str       <p>The input string.</p>
10936
     * @param string $encoding  [optional] <p>Set the charset for e.g. "mb_" function</p>
10937
     * @param bool   $cleanUtf8 [optional] <p>Remove non UTF-8 chars from the string.</p>
10938
     *
10939
     * @return string each character's case swapped
10940
     */
10941 6
    public static function swapCase(string $str, string $encoding = 'UTF-8', bool $cleanUtf8 = false): string
10942
    {
10943 6
        if ($str === '') {
10944 1
            return '';
10945
        }
10946
10947 6
        if ($cleanUtf8 === true) {
10948
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
10949
            // if invalid characters are found in $haystack before $needle
10950 2
            $str = self::clean($str);
10951
        }
10952
10953 6
        if ($encoding === 'UTF-8') {
10954 4
            return (string) (\mb_strtolower($str) ^ \mb_strtoupper($str) ^ $str);
10955
        }
10956
10957 4
        return (string) (self::strtolower($str, $encoding) ^ self::strtoupper($str, $encoding) ^ $str);
10958
    }
10959
10960
    /**
10961
     * Checks whether symfony-polyfills are used.
10962
     *
10963
     * @return bool
10964
     *              <strong>true</strong> if in use, <strong>false</strong> otherwise
10965
     */
10966
    public static function symfony_polyfill_used(): bool
10967
    {
10968
        // init
10969
        $return = false;
10970
10971
        $returnTmp = \extension_loaded('mbstring');
10972
        if ($returnTmp === false && \function_exists('mb_strlen')) {
10973
            $return = true;
10974
        }
10975
10976
        $returnTmp = \extension_loaded('iconv');
10977
        if ($returnTmp === false && \function_exists('iconv')) {
10978
            $return = true;
10979
        }
10980
10981
        return $return;
10982
    }
10983
10984
    /**
10985
     * @param string $str
10986
     * @param int    $tabLength
10987
     *
10988
     * @return string
10989
     */
10990 6
    public static function tabs_to_spaces(string $str, int $tabLength = 4): string
10991
    {
10992 6
        if ($tabLength === 4) {
10993 3
            $spaces = '    ';
10994 3
        } elseif ($tabLength === 2) {
10995 1
            $spaces = '  ';
10996
        } else {
10997 2
            $spaces = \str_repeat(' ', $tabLength);
10998
        }
10999
11000 6
        return \str_replace("\t", $spaces, $str);
11001
    }
11002
11003
    /**
11004
     * Converts the first character of each word in the string to uppercase
11005
     * and all other chars to lowercase.
11006
     *
11007
     * @param string      $str                   <p>The input string.</p>
11008
     * @param string      $encoding              [optional] <p>Set the charset for e.g. "mb_" function</p>
11009
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
11010
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
11011
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
11012
     *
11013
     * @return string string with all characters of $str being title-cased
11014
     */
11015 5
    public static function titlecase(
11016
        string $str,
11017
        string $encoding = 'UTF-8',
11018
        bool $cleanUtf8 = false,
11019
        string $lang = null,
11020
        bool $tryToKeepStringLength = false
11021
    ): string {
11022 5
        if ($cleanUtf8 === true) {
11023
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
11024
            // if invalid characters are found in $haystack before $needle
11025
            $str = self::clean($str);
11026
        }
11027
11028 5
        if ($lang === null && $tryToKeepStringLength === false) {
11029 5
            if ($encoding === 'UTF-8') {
11030 3
                return \mb_convert_case($str, \MB_CASE_TITLE);
11031
            }
11032
11033 2
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
11034
11035 2
            return \mb_convert_case($str, \MB_CASE_TITLE, $encoding);
11036
        }
11037
11038
        return self::str_titleize($str, null, $encoding, false, $lang, $tryToKeepStringLength, false);
11039
    }
11040
11041
    /**
11042
     * alias for "UTF8::to_ascii()"
11043
     *
11044
     * @param string $str
11045
     * @param string $subst_chr
11046
     * @param bool   $strict
11047
     *
11048
     * @return string
11049
     *
11050
     * @see UTF8::to_ascii()
11051
     * @deprecated <p>use "UTF8::to_ascii()"</p>
11052
     */
11053 7
    public static function toAscii(string $str, string $subst_chr = '?', bool $strict = false): string
11054
    {
11055 7
        return self::to_ascii($str, $subst_chr, $strict);
11056
    }
11057
11058
    /**
11059
     * alias for "UTF8::to_iso8859()"
11060
     *
11061
     * @param string|string[] $str
11062
     *
11063
     * @return string|string[]
11064
     *
11065
     * @see UTF8::to_iso8859()
11066
     * @deprecated <p>use "UTF8::to_iso8859()"</p>
11067
     */
11068 2
    public static function toIso8859($str)
11069
    {
11070 2
        return self::to_iso8859($str);
11071
    }
11072
11073
    /**
11074
     * alias for "UTF8::to_latin1()"
11075
     *
11076
     * @param string|string[] $str
11077
     *
11078
     * @return string|string[]
11079
     *
11080
     * @see UTF8::to_latin1()
11081
     * @deprecated <p>use "UTF8::to_latin1()"</p>
11082
     */
11083 2
    public static function toLatin1($str)
11084
    {
11085 2
        return self::to_latin1($str);
11086
    }
11087
11088
    /**
11089
     * alias for "UTF8::to_utf8()"
11090
     *
11091
     * @param string|string[] $str
11092
     *
11093
     * @return string|string[]
11094
     *
11095
     * @see UTF8::to_utf8()
11096
     * @deprecated <p>use "UTF8::to_utf8()"</p>
11097
     */
11098 2
    public static function toUTF8($str)
11099
    {
11100 2
        return self::to_utf8($str);
11101
    }
11102
11103
    /**
11104
     * Convert a string into ASCII.
11105
     *
11106
     * @param string $str     <p>The input string.</p>
11107
     * @param string $unknown [optional] <p>Character use if character unknown. (default is ?)</p>
11108
     * @param bool   $strict  [optional] <p>Use "transliterator_transliterate()" from PHP-Intl | WARNING: bad
11109
     *                        performance</p>
11110
     *
11111
     * @return string
11112
     */
11113 38
    public static function to_ascii(string $str, string $unknown = '?', bool $strict = false): string
11114
    {
11115 38
        static $UTF8_TO_ASCII;
11116
11117 38
        if ($str === '') {
11118 3
            return '';
11119
        }
11120
11121
        // check if we only have ASCII, first (better performance)
11122 35
        if (self::is_ascii($str) === true) {
11123 9
            return $str;
11124
        }
11125
11126 28
        $str = self::clean(
11127 28
            $str,
11128 28
            true,
11129 28
            true,
11130 28
            true,
11131 28
            false,
11132 28
            true,
11133 28
            true
11134
        );
11135
11136
        // check again, if we only have ASCII, now ...
11137 28
        if (self::is_ascii($str) === true) {
11138 10
            return $str;
11139
        }
11140
11141
        if (
11142 19
            $strict === true
11143
            &&
11144 19
            self::$SUPPORT['intl'] === true
11145
        ) {
11146
            // INFO: https://unicode.org/cldr/utility/character.jsp?a=%E2%84%8C
11147
            /** @noinspection PhpComposerExtensionStubsInspection */
11148
            /** @noinspection UnnecessaryCastingInspection */
11149 1
            $str = (string) \transliterator_transliterate('NFKC; [:Nonspacing Mark:] Remove; NFKC; Any-Latin; Latin-ASCII;', $str);
11150
11151
            // check again, if we only have ASCII, now ...
11152 1
            if (self::is_ascii($str) === true) {
11153 1
                return $str;
11154
            }
11155
        }
11156
11157 19
        if (self::$ORD === null) {
11158
            self::$ORD = self::getData('ord');
11159
        }
11160
11161 19
        \preg_match_all('/.{1}|[^\x00]{1,1}$/us', $str, $ar);
11162 19
        $chars = $ar[0];
11163 19
        $ord = null;
11164 19
        foreach ($chars as &$c) {
11165 19
            $ordC0 = self::$ORD[$c[0]];
11166
11167 19
            if ($ordC0 >= 0 && $ordC0 <= 127) {
11168 15
                continue;
11169
            }
11170
11171 19
            $ordC1 = self::$ORD[$c[1]];
11172
11173
            // ASCII - next please
11174 19
            if ($ordC0 >= 192 && $ordC0 <= 223) {
11175 17
                $ord = ($ordC0 - 192) * 64 + ($ordC1 - 128);
11176
            }
11177
11178 19
            if ($ordC0 >= 224) {
11179 8
                $ordC2 = self::$ORD[$c[2]];
11180
11181 8
                if ($ordC0 <= 239) {
11182 7
                    $ord = ($ordC0 - 224) * 4096 + ($ordC1 - 128) * 64 + ($ordC2 - 128);
11183
                }
11184
11185 8
                if ($ordC0 >= 240) {
11186 2
                    $ordC3 = self::$ORD[$c[3]];
11187
11188 2
                    if ($ordC0 <= 247) {
11189 2
                        $ord = ($ordC0 - 240) * 262144 + ($ordC1 - 128) * 4096 + ($ordC2 - 128) * 64 + ($ordC3 - 128);
11190
                    }
11191
11192 2
                    if ($ordC0 >= 248) {
11193
                        $ordC4 = self::$ORD[$c[4]];
11194
11195
                        if ($ordC0 <= 251) {
11196
                            $ord = ($ordC0 - 248) * 16777216 + ($ordC1 - 128) * 262144 + ($ordC2 - 128) * 4096 + ($ordC3 - 128) * 64 + ($ordC4 - 128);
11197
                        }
11198
11199
                        if ($ordC0 >= 252) {
11200
                            $ordC5 = self::$ORD[$c[5]];
11201
11202
                            if ($ordC0 <= 253) {
11203
                                $ord = ($ordC0 - 252) * 1073741824 + ($ordC1 - 128) * 16777216 + ($ordC2 - 128) * 262144 + ($ordC3 - 128) * 4096 + ($ordC4 - 128) * 64 + ($ordC5 - 128);
11204
                            }
11205
                        }
11206
                    }
11207
                }
11208
            }
11209
11210 19
            if ($ordC0 === 254 || $ordC0 === 255) {
11211
                $c = $unknown;
11212
11213
                continue;
11214
            }
11215
11216 19
            if ($ord === null) {
11217
                $c = $unknown;
11218
11219
                continue;
11220
            }
11221
11222 19
            $bank = $ord >> 8;
11223 19
            if (!isset($UTF8_TO_ASCII[$bank])) {
11224 9
                $UTF8_TO_ASCII[$bank] = self::getDataIfExists(\sprintf('x%02x', $bank));
11225 9
                if ($UTF8_TO_ASCII[$bank] === false) {
11226 2
                    $UTF8_TO_ASCII[$bank] = [];
11227
                }
11228
            }
11229
11230 19
            $newchar = $ord & 255;
11231
11232
            /** @noinspection NullCoalescingOperatorCanBeUsedInspection */
11233 19
            if (isset($UTF8_TO_ASCII[$bank][$newchar])) {
11234
11235
                // keep for debugging
11236
                /*
11237
                echo "file: " . sprintf('x%02x', $bank) . "\n";
11238
                echo "char: " . $c . "\n";
11239
                echo "ord: " . $ord . "\n";
11240
                echo "newchar: " . $newchar . "\n";
11241
                echo "ascii: " . $UTF8_TO_ASCII[$bank][$newchar] . "\n";
11242
                echo "bank:" . $bank . "\n\n";
11243
                 */
11244
11245 18
                $c = $UTF8_TO_ASCII[$bank][$newchar];
11246
            } else {
11247
11248
                // keep for debugging missing chars
11249
                /*
11250
                echo "file: " . sprintf('x%02x', $bank) . "\n";
11251
                echo "char: " . $c . "\n";
11252
                echo "ord: " . $ord . "\n";
11253
                echo "newchar: " . $newchar . "\n";
11254
                echo "bank:" . $bank . "\n\n";
11255
                 */
11256
11257 19
                $c = $unknown;
11258
            }
11259
        }
11260
11261 19
        return \implode('', $chars);
11262
    }
11263
11264
    /**
11265
     * @param mixed $str
11266
     *
11267
     * @return bool
11268
     */
11269 19
    public static function to_boolean($str): bool
11270
    {
11271
        // init
11272 19
        $str = (string) $str;
11273
11274 19
        if ($str === '') {
11275 2
            return false;
11276
        }
11277
11278
        // Info: http://php.net/manual/en/filter.filters.validate.php
11279
        $map = [
11280 17
            'true'  => true,
11281
            '1'     => true,
11282
            'on'    => true,
11283
            'yes'   => true,
11284
            'false' => false,
11285
            '0'     => false,
11286
            'off'   => false,
11287
            'no'    => false,
11288
        ];
11289
11290 17
        if (isset($map[$str])) {
11291 11
            return $map[$str];
11292
        }
11293
11294 6
        $key = \strtolower($str);
11295 6
        if (isset($map[$key])) {
11296 2
            return $map[$key];
11297
        }
11298
11299 4
        if (\is_numeric($str)) {
11300 2
            return ((float) $str + 0) > 0;
11301
        }
11302
11303 2
        return (bool) \trim($str);
11304
    }
11305
11306
    /**
11307
     * Convert given string to safe filename (and keep string case).
11308
     *
11309
     * @param string $string
11310
     * @param bool   $use_transliterate No transliteration, conversion etc. is done by default - unsafe characters are
11311
     *                                  simply replaced with hyphen.
11312
     * @param string $fallback_char
11313
     *
11314
     * @return string
11315
     */
11316 1
    public static function to_filename(string $string, bool $use_transliterate = false, string $fallback_char = '-'): string
11317
    {
11318 1
        if ($use_transliterate === true) {
11319 1
            $string = self::str_transliterate($string, $fallback_char);
11320
        }
11321
11322 1
        $fallback_char_escaped = \preg_quote($fallback_char, '/');
11323
11324 1
        $string = (string) \preg_replace(
11325
            [
11326 1
                '/[^' . $fallback_char_escaped . '\.\-a-zA-Z0-9\s]/', // 1) remove un-needed chars
11327 1
                '/[\s]+/u',                                           // 2) convert spaces to $fallback_char
11328 1
                '/[' . $fallback_char_escaped . ']+/u',               // 3) remove double $fallback_char's
11329
            ],
11330
            [
11331 1
                '',
11332 1
                $fallback_char,
11333 1
                $fallback_char,
11334
            ],
11335 1
            $string
11336
        );
11337
11338
        // trim "$fallback_char" from beginning and end of the string
11339 1
        return \trim($string, $fallback_char);
11340
    }
11341
11342
    /**
11343
     * Convert a string into "ISO-8859"-encoding (Latin-1).
11344
     *
11345
     * @param string|string[] $str
11346
     *
11347
     * @return string|string[]
11348
     */
11349 8
    public static function to_iso8859($str)
11350
    {
11351 8
        if (\is_array($str) === true) {
11352 2
            foreach ($str as $k => &$v) {
11353 2
                $v = self::to_iso8859($v);
11354
            }
11355
11356 2
            return $str;
11357
        }
11358
11359 8
        $str = (string) $str;
11360 8
        if ($str === '') {
11361 2
            return '';
11362
        }
11363
11364 8
        return self::utf8_decode($str);
11365
    }
11366
11367
    /**
11368
     * alias for "UTF8::to_iso8859()"
11369
     *
11370
     * @param string|string[] $str
11371
     *
11372
     * @return string|string[]
11373
     *
11374
     * @see UTF8::to_iso8859()
11375
     */
11376 2
    public static function to_latin1($str)
11377
    {
11378 2
        return self::to_iso8859($str);
11379
    }
11380
11381
    /**
11382
     * This function leaves UTF-8 characters alone, while converting almost all non-UTF8 to UTF8.
11383
     *
11384
     * <ul>
11385
     * <li>It decode UTF-8 codepoints and unicode escape sequences.</li>
11386
     * <li>It assumes that the encoding of the original string is either WINDOWS-1252 or ISO-8859.</li>
11387
     * <li>WARNING: It does not remove invalid UTF-8 characters, so you maybe need to use "UTF8::clean()" for this
11388
     * case.</li>
11389
     * </ul>
11390
     *
11391
     * @param string|string[] $str                    <p>Any string or array.</p>
11392
     * @param bool            $decodeHtmlEntityToUtf8 <p>Set to true, if you need to decode html-entities.</p>
11393
     *
11394
     * @return string|string[] the UTF-8 encoded string
11395
     */
11396 41
    public static function to_utf8($str, bool $decodeHtmlEntityToUtf8 = false)
11397
    {
11398 41
        if (\is_array($str) === true) {
11399 4
            foreach ($str as $k => &$v) {
11400 4
                $v = self::to_utf8($v, $decodeHtmlEntityToUtf8);
11401
            }
11402
11403 4
            return $str;
11404
        }
11405
11406 41
        $str = (string) $str;
11407 41
        if ($str === '') {
11408 6
            return $str;
11409
        }
11410
11411 41
        $max = \strlen($str);
11412 41
        $buf = '';
11413
11414 41
        for ($i = 0; $i < $max; ++$i) {
11415 41
            $c1 = $str[$i];
11416
11417 41
            if ($c1 >= "\xC0") { // should be converted to UTF8, if it's not UTF8 already
11418
11419 37
                if ($c1 <= "\xDF") { // looks like 2 bytes UTF8
11420
11421 34
                    $c2 = $i + 1 >= $max ? "\x00" : $str[$i + 1];
11422
11423 34
                    if ($c2 >= "\x80" && $c2 <= "\xBF") { // yeah, almost sure it's UTF8 already
11424 20
                        $buf .= $c1 . $c2;
11425 20
                        ++$i;
11426
                    } else { // not valid UTF8 - convert it
11427 34
                        $buf .= self::to_utf8_convert_helper($c1);
11428
                    }
11429 34
                } elseif ($c1 >= "\xE0" && $c1 <= "\xEF") { // looks like 3 bytes UTF8
11430
11431 33
                    $c2 = $i + 1 >= $max ? "\x00" : $str[$i + 1];
11432 33
                    $c3 = $i + 2 >= $max ? "\x00" : $str[$i + 2];
11433
11434 33
                    if ($c2 >= "\x80" && $c2 <= "\xBF" && $c3 >= "\x80" && $c3 <= "\xBF") { // yeah, almost sure it's UTF8 already
11435 15
                        $buf .= $c1 . $c2 . $c3;
11436 15
                        $i += 2;
11437
                    } else { // not valid UTF8 - convert it
11438 33
                        $buf .= self::to_utf8_convert_helper($c1);
11439
                    }
11440 26
                } elseif ($c1 >= "\xF0" && $c1 <= "\xF7") { // looks like 4 bytes UTF8
11441
11442 26
                    $c2 = $i + 1 >= $max ? "\x00" : $str[$i + 1];
11443 26
                    $c3 = $i + 2 >= $max ? "\x00" : $str[$i + 2];
11444 26
                    $c4 = $i + 3 >= $max ? "\x00" : $str[$i + 3];
11445
11446 26
                    if ($c2 >= "\x80" && $c2 <= "\xBF" && $c3 >= "\x80" && $c3 <= "\xBF" && $c4 >= "\x80" && $c4 <= "\xBF") { // yeah, almost sure it's UTF8 already
11447 8
                        $buf .= $c1 . $c2 . $c3 . $c4;
11448 8
                        $i += 3;
11449
                    } else { // not valid UTF8 - convert it
11450 26
                        $buf .= self::to_utf8_convert_helper($c1);
11451
                    }
11452
                } else { // doesn't look like UTF8, but should be converted
11453
11454 37
                    $buf .= self::to_utf8_convert_helper($c1);
11455
                }
11456 38
            } elseif (($c1 & "\xC0") === "\x80") { // needs conversion
11457
11458 4
                $buf .= self::to_utf8_convert_helper($c1);
11459
            } else { // it doesn't need conversion
11460
11461 38
                $buf .= $c1;
11462
            }
11463
        }
11464
11465
        // decode unicode escape sequences + unicode surrogate pairs
11466 41
        $buf = \preg_replace_callback(
11467 41
            '/\\\\u([dD][89abAB][0-9a-fA-F]{2})\\\\u([dD][cdefCDEF][\da-fA-F]{2})|\\\\u([0-9a-fA-F]{4})/',
11468
            /**
11469
             * @param array $matches
11470
             *
11471
             * @return string
11472
             */
11473
            static function (array $matches): string {
11474 12
                if (isset($matches[3])) {
11475 12
                    $cp = (int) \hexdec($matches[3]);
11476
                } else {
11477
                    // http://unicode.org/faq/utf_bom.html#utf16-4
11478
                    $cp = ((int) \hexdec($matches[1]) << 10)
11479
                          + (int) \hexdec($matches[2])
11480
                          + 0x10000
11481
                          - (0xD800 << 10)
11482
                          - 0xDC00;
11483
                }
11484
11485
                // https://github.com/php/php-src/blob/php-7.3.2/ext/standard/html.c#L471
11486
                //
11487
                // php_utf32_utf8(unsigned char *buf, unsigned k)
11488
11489 12
                if ($cp < 0x80) {
11490 8
                    return (string) self::chr($cp);
11491
                }
11492
11493 9
                if ($cp < 0xA0) {
11494
                    /** @noinspection UnnecessaryCastingInspection */
11495
                    return (string) self::chr(0xC0 | $cp >> 6) . (string) self::chr(0x80 | $cp & 0x3F);
11496
                }
11497
11498 9
                return self::decimal_to_chr($cp);
11499 41
            },
11500 41
            $buf
11501
        );
11502
11503 41
        if ($buf === null) {
11504
            return '';
11505
        }
11506
11507
        // decode UTF-8 codepoints
11508 41
        if ($decodeHtmlEntityToUtf8 === true) {
11509 2
            $buf = self::html_entity_decode($buf);
11510
        }
11511
11512 41
        return $buf;
11513
    }
11514
11515
    /**
11516
     * Strip whitespace or other characters from beginning or end of a UTF-8 string.
11517
     *
11518
     * INFO: This is slower then "trim()"
11519
     *
11520
     * We can only use the original-function, if we use <= 7-Bit in the string / chars
11521
     * but the check for ACSII (7-Bit) cost more time, then we can safe here.
11522
     *
11523
     * @param string      $str   <p>The string to be trimmed</p>
11524
     * @param string|null $chars [optional] <p>Optional characters to be stripped</p>
11525
     *
11526
     * @return string the trimmed string
11527
     */
11528 55
    public static function trim(string $str = '', string $chars = null): string
11529
    {
11530 55
        if ($str === '') {
11531 9
            return '';
11532
        }
11533
11534 48
        if ($chars) {
11535 27
            $chars = \preg_quote($chars, '/');
11536 27
            $pattern = "^[${chars}]+|[${chars}]+\$";
11537
        } else {
11538 21
            $pattern = "^[\s]+|[\s]+\$";
11539
        }
11540
11541 48
        if (self::$SUPPORT['mbstring'] === true) {
11542
            /** @noinspection PhpComposerExtensionStubsInspection */
11543 48
            return (string) \mb_ereg_replace($pattern, '', $str);
11544
        }
11545
11546 8
        return self::regex_replace($str, $pattern, '', '', '/');
11547
    }
11548
11549
    /**
11550
     * Makes string's first char uppercase.
11551
     *
11552
     * @param string      $str                   <p>The input string.</p>
11553
     * @param string      $encoding              [optional] <p>Set the charset for e.g. "mb_" function</p>
11554
     * @param bool        $cleanUtf8             [optional] <p>Remove non UTF-8 chars from the string.</p>
11555
     * @param string|null $lang                  [optional] <p>Set the language for special cases: az, el, lt, tr</p>
11556
     * @param bool        $tryToKeepStringLength [optional] <p>true === try to keep the string length: e.g. ẞ -> ß</p>
11557
     *
11558
     * @return string the resulting string
11559
     */
11560 69
    public static function ucfirst(
11561
        string $str,
11562
        string $encoding = 'UTF-8',
11563
        bool $cleanUtf8 = false,
11564
        string $lang = null,
11565
        bool $tryToKeepStringLength = false
11566
    ): string {
11567 69
        if ($str === '') {
11568 3
            return '';
11569
        }
11570
11571 68
        if ($cleanUtf8 === true) {
11572
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
11573
            // if invalid characters are found in $haystack before $needle
11574 1
            $str = self::clean($str);
11575
        }
11576
11577 68
        $useMbFunction = $lang === null && $tryToKeepStringLength === false;
11578
11579 68
        if ($encoding === 'UTF-8') {
11580 22
            $strPartTwo = (string) \mb_substr($str, 1);
11581
11582 22
            if ($useMbFunction === true) {
11583 22
                $strPartOne = \mb_strtoupper(
11584 22
                    (string) \mb_substr($str, 0, 1)
11585
                );
11586
            } else {
11587
                $strPartOne = self::strtoupper(
11588
                    (string) \mb_substr($str, 0, 1),
11589
                    $encoding,
11590
                    false,
11591
                    $lang,
11592 22
                    $tryToKeepStringLength
11593
                );
11594
            }
11595
        } else {
11596 47
            $encoding = self::normalize_encoding($encoding, 'UTF-8');
11597
11598 47
            $strPartTwo = (string) self::substr($str, 1, null, $encoding);
11599
11600 47
            if ($useMbFunction === true) {
11601 47
                $strPartOne = \mb_strtoupper(
11602 47
                    (string) \mb_substr($str, 0, 1, $encoding),
11603 47
                    $encoding
11604
                );
11605
            } else {
11606
                $strPartOne = self::strtoupper(
11607
                    (string) self::substr($str, 0, 1, $encoding),
11608
                    $encoding,
11609
                    false,
11610
                    $lang,
11611
                    $tryToKeepStringLength
11612
                );
11613
            }
11614
        }
11615
11616 68
        return $strPartOne . $strPartTwo;
11617
    }
11618
11619
    /**
11620
     * alias for "UTF8::ucfirst()"
11621
     *
11622
     * @param string $str
11623
     * @param string $encoding
11624
     * @param bool   $cleanUtf8
11625
     *
11626
     * @return string
11627
     *
11628
     * @see UTF8::ucfirst()
11629
     */
11630 1
    public static function ucword(string $str, string $encoding = 'UTF-8', bool $cleanUtf8 = false): string
11631
    {
11632 1
        return self::ucfirst($str, $encoding, $cleanUtf8);
11633
    }
11634
11635
    /**
11636
     * Uppercase for all words in the string.
11637
     *
11638
     * @param string   $str        <p>The input string.</p>
11639
     * @param string[] $exceptions [optional] <p>Exclusion for some words.</p>
11640
     * @param string   $charlist   [optional] <p>Additional chars that contains to words and do not start a new
11641
     *                             word.</p>
11642
     * @param string   $encoding   [optional] <p>Set the charset.</p>
11643
     * @param bool     $cleanUtf8  [optional] <p>Remove non UTF-8 chars from the string.</p>
11644
     *
11645
     * @return string
11646
     */
11647 8
    public static function ucwords(
11648
        string $str,
11649
        array $exceptions = [],
11650
        string $charlist = '',
11651
        string $encoding = 'UTF-8',
11652
        bool $cleanUtf8 = false
11653
    ): string {
11654 8
        if (!$str) {
11655 2
            return '';
11656
        }
11657
11658
        // INFO: mb_convert_case($str, MB_CASE_TITLE);
11659
        // -> MB_CASE_TITLE didn't only uppercase the first letter, it also lowercase all other letters
11660
11661 7
        if ($cleanUtf8 === true) {
11662
            // "mb_strpos()" and "iconv_strpos()" returns wrong position,
11663
            // if invalid characters are found in $haystack before $needle
11664 1
            $str = self::clean($str);
11665
        }
11666
11667 7
        $usePhpDefaultFunctions = !(bool) ($charlist . \implode('', $exceptions));
11668
11669
        if (
11670 7
            $usePhpDefaultFunctions === true
11671
            &&
11672 7
            self::is_ascii($str) === true
11673
        ) {
11674
            return \ucwords($str);
11675
        }
11676
11677 7
        $words = self::str_to_words($str, $charlist);
11678 7
        $useExceptions = \count($exceptions) > 0;
11679
11680 7
        foreach ($words as &$word) {
11681 7
            if (!$word) {
11682 7
                continue;
11683
            }
11684
11685
            if (
11686 7
                $useExceptions === false
11687
                ||
11688 7
                !\in_array($word, $exceptions, true)
11689
            ) {
11690 7
                $word = self::ucfirst($word, $encoding);
11691
            }
11692
        }
11693
11694 7
        return \implode('', $words);
11695
    }
11696
11697
    /**
11698
     * Multi decode html entity & fix urlencoded-win1252-chars.
11699
     *
11700
     * e.g:
11701
     * 'test+test'                     => 'test test'
11702
     * 'D&#252;sseldorf'               => 'Düsseldorf'
11703
     * 'D%FCsseldorf'                  => 'Düsseldorf'
11704
     * 'D&#xFC;sseldorf'               => 'Düsseldorf'
11705
     * 'D%26%23xFC%3Bsseldorf'         => 'Düsseldorf'
11706
     * 'Düsseldorf'                   => 'Düsseldorf'
11707
     * 'D%C3%BCsseldorf'               => 'Düsseldorf'
11708
     * 'D%C3%83%C2%BCsseldorf'         => 'Düsseldorf'
11709
     * 'D%25C3%2583%25C2%25BCsseldorf' => 'Düsseldorf'
11710
     *
11711
     * @param string $str          <p>The input string.</p>
11712
     * @param bool   $multi_decode <p>Decode as often as possible.</p>
11713
     *
11714
     * @return string
11715
     */
11716 4
    public static function urldecode(string $str, bool $multi_decode = true): string
11717
    {
11718 4
        if ($str === '') {
11719 3
            return '';
11720
        }
11721
11722
        if (
11723 4
            \strpos($str, '&') === false
11724
            &&
11725 4
            \strpos($str, '%') === false
11726
            &&
11727 4
            \strpos($str, '+') === false
11728
            &&
11729 4
            \strpos($str, '\u') === false
11730
        ) {
11731 3
            return self::fix_simple_utf8($str);
11732
        }
11733
11734 4
        $str = self::urldecode_unicode_helper($str);
11735
11736
        do {
11737 4
            $str_compare = $str;
11738
11739
            /**
11740
             * @psalm-suppress PossiblyInvalidArgument
11741
             */
11742 4
            $str = self::fix_simple_utf8(
11743 4
                \urldecode(
11744 4
                    self::html_entity_decode(
11745 4
                        self::to_utf8($str),
11746 4
                        \ENT_QUOTES | \ENT_HTML5
11747
                    )
11748
                )
11749
            );
11750 4
        } while ($multi_decode === true && $str_compare !== $str);
11751
11752 4
        return $str;
11753
    }
11754
11755
    /**
11756
     * Return a array with "urlencoded"-win1252 -> UTF-8
11757
     *
11758
     * @return string[]
11759
     *
11760
     * @deprecated <p>use the "UTF8::urldecode()" function to decode a string</p>
11761
     */
11762 2
    public static function urldecode_fix_win1252_chars(): array
11763
    {
11764
        return [
11765 2
            '%20' => ' ',
11766
            '%21' => '!',
11767
            '%22' => '"',
11768
            '%23' => '#',
11769
            '%24' => '$',
11770
            '%25' => '%',
11771
            '%26' => '&',
11772
            '%27' => "'",
11773
            '%28' => '(',
11774
            '%29' => ')',
11775
            '%2A' => '*',
11776
            '%2B' => '+',
11777
            '%2C' => ',',
11778
            '%2D' => '-',
11779
            '%2E' => '.',
11780
            '%2F' => '/',
11781
            '%30' => '0',
11782
            '%31' => '1',
11783
            '%32' => '2',
11784
            '%33' => '3',
11785
            '%34' => '4',
11786
            '%35' => '5',
11787
            '%36' => '6',
11788
            '%37' => '7',
11789
            '%38' => '8',
11790
            '%39' => '9',
11791
            '%3A' => ':',
11792
            '%3B' => ';',
11793
            '%3C' => '<',
11794
            '%3D' => '=',
11795
            '%3E' => '>',
11796
            '%3F' => '?',
11797
            '%40' => '@',
11798
            '%41' => 'A',
11799
            '%42' => 'B',
11800
            '%43' => 'C',
11801
            '%44' => 'D',
11802
            '%45' => 'E',
11803
            '%46' => 'F',
11804
            '%47' => 'G',
11805
            '%48' => 'H',
11806
            '%49' => 'I',
11807
            '%4A' => 'J',
11808
            '%4B' => 'K',
11809
            '%4C' => 'L',
11810
            '%4D' => 'M',
11811
            '%4E' => 'N',
11812
            '%4F' => 'O',
11813
            '%50' => 'P',
11814
            '%51' => 'Q',
11815
            '%52' => 'R',
11816
            '%53' => 'S',
11817
            '%54' => 'T',
11818
            '%55' => 'U',
11819
            '%56' => 'V',
11820
            '%57' => 'W',
11821
            '%58' => 'X',
11822
            '%59' => 'Y',
11823
            '%5A' => 'Z',
11824
            '%5B' => '[',
11825
            '%5C' => '\\',
11826
            '%5D' => ']',
11827
            '%5E' => '^',
11828
            '%5F' => '_',
11829
            '%60' => '`',
11830
            '%61' => 'a',
11831
            '%62' => 'b',
11832
            '%63' => 'c',
11833
            '%64' => 'd',
11834
            '%65' => 'e',
11835
            '%66' => 'f',
11836
            '%67' => 'g',
11837
            '%68' => 'h',
11838
            '%69' => 'i',
11839
            '%6A' => 'j',
11840
            '%6B' => 'k',
11841
            '%6C' => 'l',
11842
            '%6D' => 'm',
11843
            '%6E' => 'n',
11844
            '%6F' => 'o',
11845
            '%70' => 'p',
11846
            '%71' => 'q',
11847
            '%72' => 'r',
11848
            '%73' => 's',
11849
            '%74' => 't',
11850
            '%75' => 'u',
11851
            '%76' => 'v',
11852
            '%77' => 'w',
11853
            '%78' => 'x',
11854
            '%79' => 'y',
11855
            '%7A' => 'z',
11856
            '%7B' => '{',
11857
            '%7C' => '|',
11858
            '%7D' => '}',
11859
            '%7E' => '~',
11860
            '%7F' => '',
11861
            '%80' => '`',
11862
            '%81' => '',
11863
            '%82' => '‚',
11864
            '%83' => 'ƒ',
11865
            '%84' => '„',
11866
            '%85' => '…',
11867
            '%86' => '†',
11868
            '%87' => '‡',
11869
            '%88' => 'ˆ',
11870
            '%89' => '‰',
11871
            '%8A' => 'Š',
11872
            '%8B' => '‹',
11873
            '%8C' => 'Œ',
11874
            '%8D' => '',
11875
            '%8E' => 'Ž',
11876
            '%8F' => '',
11877
            '%90' => '',
11878
            '%91' => '‘',
11879
            '%92' => '’',
11880
            '%93' => '“',
11881
            '%94' => '”',
11882
            '%95' => '•',
11883
            '%96' => '–',
11884
            '%97' => '—',
11885
            '%98' => '˜',
11886
            '%99' => '™',
11887
            '%9A' => 'š',
11888
            '%9B' => '›',
11889
            '%9C' => 'œ',
11890
            '%9D' => '',
11891
            '%9E' => 'ž',
11892
            '%9F' => 'Ÿ',
11893
            '%A0' => '',
11894
            '%A1' => '¡',
11895
            '%A2' => '¢',
11896
            '%A3' => '£',
11897
            '%A4' => '¤',
11898
            '%A5' => '¥',
11899
            '%A6' => '¦',
11900
            '%A7' => '§',
11901
            '%A8' => '¨',
11902
            '%A9' => '©',
11903
            '%AA' => 'ª',
11904
            '%AB' => '«',
11905
            '%AC' => '¬',
11906
            '%AD' => '',
11907
            '%AE' => '®',
11908
            '%AF' => '¯',
11909
            '%B0' => '°',
11910
            '%B1' => '±',
11911
            '%B2' => '²',
11912
            '%B3' => '³',
11913
            '%B4' => '´',
11914
            '%B5' => 'µ',
11915
            '%B6' => '¶',
11916
            '%B7' => '·',
11917
            '%B8' => '¸',
11918
            '%B9' => '¹',
11919
            '%BA' => 'º',
11920
            '%BB' => '»',
11921
            '%BC' => '¼',
11922
            '%BD' => '½',
11923
            '%BE' => '¾',
11924
            '%BF' => '¿',
11925
            '%C0' => 'À',
11926
            '%C1' => 'Á',
11927
            '%C2' => 'Â',
11928
            '%C3' => 'Ã',
11929
            '%C4' => 'Ä',
11930
            '%C5' => 'Å',
11931
            '%C6' => 'Æ',
11932
            '%C7' => 'Ç',
11933
            '%C8' => 'È',
11934
            '%C9' => 'É',
11935
            '%CA' => 'Ê',
11936
            '%CB' => 'Ë',
11937
            '%CC' => 'Ì',
11938
            '%CD' => 'Í',
11939
            '%CE' => 'Î',
11940
            '%CF' => 'Ï',
11941
            '%D0' => 'Ð',
11942
            '%D1' => 'Ñ',
11943
            '%D2' => 'Ò',
11944
            '%D3' => 'Ó',
11945
            '%D4' => 'Ô',
11946
            '%D5' => 'Õ',
11947
            '%D6' => 'Ö',
11948
            '%D7' => '×',
11949
            '%D8' => 'Ø',
11950
            '%D9' => 'Ù',
11951
            '%DA' => 'Ú',
11952
            '%DB' => 'Û',
11953
            '%DC' => 'Ü',
11954
            '%DD' => 'Ý',
11955
            '%DE' => 'Þ',
11956
            '%DF' => 'ß',
11957
            '%E0' => 'à',
11958
            '%E1' => 'á',
11959
            '%E2' => 'â',
11960
            '%E3' => 'ã',
11961
            '%E4' => 'ä',
11962
            '%E5' => 'å',
11963
            '%E6' => 'æ',
11964
            '%E7' => 'ç',
11965
            '%E8' => 'è',
11966
            '%E9' => 'é',
11967
            '%EA' => 'ê',
11968
            '%EB' => 'ë',
11969
            '%EC' => 'ì',
11970
            '%ED' => 'í',
11971
            '%EE' => 'î',
11972
            '%EF' => 'ï',
11973
            '%F0' => 'ð',
11974
            '%F1' => 'ñ',
11975
            '%F2' => 'ò',
11976
            '%F3' => 'ó',
11977
            '%F4' => 'ô',
11978
            '%F5' => 'õ',
11979
            '%F6' => 'ö',
11980
            '%F7' => '÷',
11981
            '%F8' => 'ø',
11982
            '%F9' => 'ù',
11983
            '%FA' => 'ú',
11984
            '%FB' => 'û',
11985
            '%FC' => 'ü',
11986
            '%FD' => 'ý',
11987
            '%FE' => 'þ',
11988
            '%FF' => 'ÿ',
11989
        ];
11990
    }
11991
11992
    /**
11993
     * Decodes an UTF-8 string to ISO-8859-1.
11994
     *
11995
     * @param string $str           <p>The input string.</p>
11996
     * @param bool   $keepUtf8Chars
11997
     *
11998
     * @return string
11999
     */
12000 14
    public static function utf8_decode(string $str, bool $keepUtf8Chars = false): string
12001
    {
12002 14
        if ($str === '') {
12003 6
            return '';
12004
        }
12005
12006
        // save for later comparision
12007 14
        $str_backup = $str;
12008 14
        $len = \strlen($str);
12009
12010 14
        if (self::$ORD === null) {
12011
            self::$ORD = self::getData('ord');
12012
        }
12013
12014 14
        if (self::$CHR === null) {
12015
            self::$CHR = self::getData('chr');
12016
        }
12017
12018 14
        $noCharFound = '?';
12019
        /** @noinspection ForeachInvariantsInspection */
12020 14
        for ($i = 0, $j = 0; $i < $len; ++$i, ++$j) {
12021 14
            switch ($str[$i] & "\xF0") {
12022 14
                case "\xC0":
12023 13
                case "\xD0":
12024 13
                    $c = (self::$ORD[$str[$i] & "\x1F"] << 6) | self::$ORD[$str[++$i] & "\x3F"];
12025 13
                    $str[$j] = $c < 256 ? self::$CHR[$c] : $noCharFound;
12026
12027 13
                    break;
12028
12029
                /** @noinspection PhpMissingBreakStatementInspection */
12030 13
                case "\xF0":
12031
                    ++$i;
12032
12033
                // no break
12034
12035 13
                case "\xE0":
12036 11
                    $str[$j] = $noCharFound;
12037 11
                    $i += 2;
12038
12039 11
                    break;
12040
12041
                default:
12042 12
                    $str[$j] = $str[$i];
12043
            }
12044
        }
12045
12046 14
        $return = \substr($str, 0, $j);
12047 14
        if ($return === false) {
12048
            $return = '';
12049
        }
12050
12051
        if (
12052 14
            $keepUtf8Chars === true
12053
            &&
12054 14
            self::strlen($return) >= (int) self::strlen($str_backup)
12055
        ) {
12056 2
            return $str_backup;
12057
        }
12058
12059 14
        return $return;
12060
    }
12061
12062
    /**
12063
     * Encodes an ISO-8859-1 string to UTF-8.
12064
     *
12065
     * @param string $str <p>The input string.</p>
12066
     *
12067
     * @return string
12068
     */
12069 14
    public static function utf8_encode(string $str): string
12070
    {
12071 14
        if ($str === '') {
12072 14
            return '';
12073
        }
12074
12075 14
        $str = \utf8_encode($str);
12076
12077
        // the polyfill maybe return false
12078
        /** @noinspection CallableParameterUseCaseInTypeContextInspection */
12079
        /** @psalm-suppress TypeDoesNotContainType */
12080 14
        if ($str === false) {
12081
            return '';
12082
        }
12083
12084 14
        return $str;
12085
    }
12086
12087
    /**
12088
     * fix -> utf8-win1252 chars
12089
     *
12090
     * @param string $str <p>The input string.</p>
12091
     *
12092
     * @return string
12093
     *
12094
     * @deprecated <p>use "UTF8::fix_simple_utf8()"</p>
12095
     */
12096 2
    public static function utf8_fix_win1252_chars(string $str): string
12097
    {
12098 2
        return self::fix_simple_utf8($str);
12099
    }
12100
12101
    /**
12102
     * Returns an array with all utf8 whitespace characters.
12103
     *
12104
     * @see http://www.bogofilter.org/pipermail/bogofilter/2003-March/001889.html
12105
     *
12106
     * @return string[]
12107
     *                  An array with all known whitespace characters as values and the type of whitespace as keys
12108
     *                  as defined in above URL
12109
     */
12110 2
    public static function whitespace_table(): array
12111
    {
12112 2
        return self::$WHITESPACE_TABLE;
12113
    }
12114
12115
    /**
12116
     * Limit the number of words in a string.
12117
     *
12118
     * @param string $str      <p>The input string.</p>
12119
     * @param int    $limit    <p>The limit of words as integer.</p>
12120
     * @param string $strAddOn <p>Replacement for the striped string.</p>
12121
     *
12122
     * @return string
12123
     */
12124 2
    public static function words_limit(string $str, int $limit = 100, string $strAddOn = '…'): string
12125
    {
12126 2
        if ($str === '' || $limit < 1) {
12127 2
            return '';
12128
        }
12129
12130 2
        \preg_match('/^\s*+(?:\S++\s*+){1,' . $limit . '}/u', $str, $matches);
12131
12132
        if (
12133 2
            !isset($matches[0])
12134
            ||
12135 2
            \mb_strlen($str) === (int) \mb_strlen($matches[0])
12136
        ) {
12137 2
            return $str;
12138
        }
12139
12140 2
        return \rtrim($matches[0]) . $strAddOn;
12141
    }
12142
12143
    /**
12144
     * Wraps a string to a given number of characters
12145
     *
12146
     * @see http://php.net/manual/en/function.wordwrap.php
12147
     *
12148
     * @param string $str   <p>The input string.</p>
12149
     * @param int    $width [optional] <p>The column width.</p>
12150
     * @param string $break [optional] <p>The line is broken using the optional break parameter.</p>
12151
     * @param bool   $cut   [optional] <p>
12152
     *                      If the cut is set to true, the string is
12153
     *                      always wrapped at or before the specified width. So if you have
12154
     *                      a word that is larger than the given width, it is broken apart.
12155
     *                      </p>
12156
     *
12157
     * @return string
12158
     *                <p>The given string wrapped at the specified column.</p>
12159
     */
12160 10
    public static function wordwrap(
12161
        string $str,
12162
        int $width = 75,
12163
        string $break = "\n",
12164
        bool $cut = false
12165
    ): string {
12166 10
        if ($str === '' || $break === '') {
12167 3
            return '';
12168
        }
12169
12170 8
        $strSplit = \explode($break, $str);
12171 8
        if ($strSplit === false) {
12172
            return '';
12173
        }
12174
12175 8
        $chars = [];
12176 8
        $wordSplit = '';
12177 8
        foreach ($strSplit as $i => $iValue) {
12178 8
            if ($i) {
12179 1
                $chars[] = $break;
12180 1
                $wordSplit .= '#';
12181
            }
12182
12183 8
            foreach (self::str_split($iValue) as $c) {
12184 8
                $chars[] = $c;
12185 8
                $wordSplit .= $c === ' ' ? ' ' : '?';
12186
            }
12187
        }
12188
12189 8
        $strReturn = '';
12190 8
        $j = 0;
12191 8
        $b = $i = -1;
12192 8
        $wordSplit = \wordwrap($wordSplit, $width, '#', $cut);
12193
12194 8
        while (false !== $b = \mb_strpos($wordSplit, '#', $b + 1)) {
12195 6
            for (++$i; $i < $b; ++$i) {
12196 6
                $strReturn .= $chars[$j];
12197 6
                unset($chars[$j++]);
12198
            }
12199
12200
            if (
12201 6
                $break === $chars[$j]
12202
                ||
12203 6
                $chars[$j] === ' '
12204
            ) {
12205 3
                unset($chars[$j++]);
12206
            }
12207
12208 6
            $strReturn .= $break;
12209
        }
12210
12211 8
        return $strReturn . \implode('', $chars);
12212
    }
12213
12214
    /**
12215
     * Line-Wrap the string after $limit, but also after the next word.
12216
     *
12217
     * @param string $str
12218
     * @param int    $limit
12219
     *
12220
     * @return string
12221
     */
12222 1
    public static function wordwrap_per_line(string $str, int $limit): string
12223
    {
12224 1
        $strings = (array) \preg_split('/\\r\\n|\\r|\\n/', $str);
12225
12226 1
        $string = '';
12227 1
        foreach ($strings as &$value) {
12228 1
            if ($value === false) {
12229
                continue;
12230
            }
12231
12232 1
            $string .= \wordwrap($value, $limit);
12233 1
            $string .= "\n";
12234
        }
12235
12236 1
        return $string;
12237
    }
12238
12239
    /**
12240
     * Returns an array of Unicode White Space characters.
12241
     *
12242
     * @return string[] an array with numeric code point as key and White Space Character as value
12243
     */
12244 2
    public static function ws(): array
12245
    {
12246 2
        return self::$WHITESPACE;
12247
    }
12248
12249
    /**
12250
     * @param string $str
12251
     * @param bool   $useLower     <p>Use uppercase by default, otherwise use lowecase.</p>
12252
     * @param bool   $fullCaseFold <p>Convert not only common cases.</p>
12253
     *
12254
     * @return string
12255
     */
12256 33
    private static function fixStrCaseHelper(string $str, $useLower = false, $fullCaseFold = false): string
12257
    {
12258 33
        $upper = self::$COMMON_CASE_FOLD['upper'];
12259 33
        $lower = self::$COMMON_CASE_FOLD['lower'];
12260
12261 33
        if ($useLower === true) {
12262 2
            $str = \str_replace(
12263 2
                $upper,
12264 2
                $lower,
12265 2
                $str
12266
            );
12267
        } else {
12268 31
            $str = \str_replace(
12269 31
                $lower,
12270 31
                $upper,
12271 31
                $str
12272
            );
12273
        }
12274
12275 33
        if ($fullCaseFold) {
12276 31
            static $FULL_CASE_FOLD = null;
12277 31
            if ($FULL_CASE_FOLD === null) {
12278 1
                $FULL_CASE_FOLD = self::getData('caseFolding_full');
12279
            }
12280
12281 31
            if ($useLower === true) {
12282 2
                $str = \str_replace($FULL_CASE_FOLD[0], $FULL_CASE_FOLD[1], $str);
12283
            } else {
12284 29
                $str = \str_replace($FULL_CASE_FOLD[1], $FULL_CASE_FOLD[0], $str);
12285
            }
12286
        }
12287
12288 33
        return $str;
12289
    }
12290
12291
    /**
12292
     * get data from "/data/*.php"
12293
     *
12294
     * @param string $file
12295
     *
12296
     * @return array
12297
     */
12298 6
    private static function getData(string $file): array
12299
    {
12300
        /** @noinspection PhpIncludeInspection */
12301
        /** @noinspection UsingInclusionReturnValueInspection */
12302
        /** @psalm-suppress UnresolvableInclude */
12303 6
        return include __DIR__ . '/data/' . $file . '.php';
12304
    }
12305
12306
    /**
12307
     * get data from "/data/*.php"
12308
     *
12309
     * @param string $file
12310
     *
12311
     * @return false|mixed will return false on error
12312
     */
12313 9
    private static function getDataIfExists(string $file)
12314
    {
12315 9
        $file = __DIR__ . '/data/' . $file . '.php';
12316 9
        if (\file_exists($file)) {
12317
            /** @noinspection PhpIncludeInspection */
12318
            /** @noinspection UsingInclusionReturnValueInspection */
12319 8
            return include $file;
12320
        }
12321
12322 2
        return false;
12323
    }
12324
12325
    /**
12326
     * @return true|null
12327
     */
12328 9
    private static function initEmojiData()
12329
    {
12330 9
        if (self::$EMOJI_KEYS_CACHE === null) {
12331 1
            if (self::$EMOJI === null) {
12332 1
                self::$EMOJI = self::getData('emoji');
12333
            }
12334
12335 1
            \uksort(
12336 1
                self::$EMOJI,
12337
                static function (string $a, string $b): int {
12338 1
                    return \strlen($b) <=> \strlen($a);
12339 1
                }
12340
            );
12341
12342 1
            self::$EMOJI_KEYS_CACHE = \array_keys(self::$EMOJI);
12343 1
            self::$EMOJI_VALUES_CACHE = \array_values(self::$EMOJI);
12344
12345 1
            foreach (self::$EMOJI_KEYS_CACHE as $key) {
12346 1
                $tmpKey = \crc32($key);
12347 1
                self::$EMOJI_KEYS_REVERSIBLE_CACHE[] = '_-_PORTABLE_UTF8_-_' . $tmpKey . '_-_' . \strrev((string) $tmpKey) . '_-_8FTU_ELBATROP_-_';
12348
            }
12349
12350 1
            return true;
12351
        }
12352
12353 9
        return null;
12354
    }
12355
12356
    /**
12357
     * Checks whether mbstring "overloaded" is active on the server.
12358
     *
12359
     * @return bool
12360
     */
12361
    private static function mbstring_overloaded(): bool
12362
    {
12363
        /**
12364
         * INI directive 'mbstring.func_overload' is deprecated since PHP 7.2
12365
         */
12366
12367
        /** @noinspection PhpComposerExtensionStubsInspection */
12368
        /** @noinspection PhpUsageOfSilenceOperatorInspection */
12369
        return \defined('MB_OVERLOAD_STRING')
12370
               &&
12371
               ((int) @\ini_get('mbstring.func_overload') & \MB_OVERLOAD_STRING);
12372
    }
12373
12374
    /**
12375
     * @param array $strings
12376
     * @param bool  $removeEmptyValues
12377
     * @param int   $removeShortValues
12378
     *
12379
     * @return array
12380
     */
12381 2
    private static function reduce_string_array(array $strings, bool $removeEmptyValues, int $removeShortValues = null): array
12382
    {
12383
        // init
12384 2
        $return = [];
12385
12386 2
        foreach ($strings as &$str) {
12387
            if (
12388 2
                $removeShortValues !== null
12389
                &&
12390 2
                \mb_strlen($str) <= $removeShortValues
12391
            ) {
12392 2
                continue;
12393
            }
12394
12395
            if (
12396 2
                $removeEmptyValues === true
12397
                &&
12398 2
                \trim($str) === ''
12399
            ) {
12400 2
                continue;
12401
            }
12402
12403 2
            $return[] = $str;
12404
        }
12405
12406 2
        return $return;
12407
    }
12408
12409
    /**
12410
     * rxClass
12411
     *
12412
     * @param string $s
12413
     * @param string $class
12414
     *
12415
     * @return string
12416
     */
12417 33
    private static function rxClass(string $s, string $class = ''): string
12418
    {
12419 33
        static $RX_CLASS_CACHE = [];
12420
12421 33
        $cacheKey = $s . $class;
12422
12423 33
        if (isset($RX_CLASS_CACHE[$cacheKey])) {
12424 21
            return $RX_CLASS_CACHE[$cacheKey];
12425
        }
12426
12427 16
        $classArray = [$class];
12428
12429
        /** @noinspection SuspiciousLoopInspection */
12430
        /** @noinspection AlterInForeachInspection */
12431 16
        foreach (self::str_split($s) as &$s) {
0 ignored issues
show
Bug introduced by
The expression self::str_split($s) cannot be used as a reference.

Let?s assume that you have the following foreach statement:

foreach ($array as &$itemValue) { }

$itemValue is assigned by reference. This is possible because the expression (in the example $array) can be used as a reference target.

However, if we were to replace $array with something different like the result of a function call as in

foreach (getArray() as &$itemValue) { }

then assigning by reference is not possible anymore as there is no target that could be modified.

Available Fixes

1. Do not assign by reference
foreach (getArray() as $itemValue) { }
2. Assign to a local variable first
$array = getArray();
foreach ($array as &$itemValue) {}
3. Return a reference
function &getArray() { $array = array(); return $array; }

foreach (getArray() as &$itemValue) { }
Loading history...
12432 15
            if ($s === '-') {
12433
                $classArray[0] = '-' . $classArray[0];
12434 15
            } elseif (!isset($s[2])) {
12435 15
                $classArray[0] .= \preg_quote($s, '/');
12436 1
            } elseif (self::strlen($s) === 1) {
12437 1
                $classArray[0] .= $s;
12438
            } else {
12439 15
                $classArray[] = $s;
12440
            }
12441
        }
12442
12443 16
        if ($classArray[0]) {
12444 16
            $classArray[0] = '[' . $classArray[0] . ']';
12445
        }
12446
12447 16
        if (\count($classArray) === 1) {
12448 16
            $return = $classArray[0];
12449
        } else {
12450
            $return = '(?:' . \implode('|', $classArray) . ')';
12451
        }
12452
12453 16
        $RX_CLASS_CACHE[$cacheKey] = $return;
12454
12455 16
        return $return;
12456
    }
12457
12458
    /**
12459
     * Personal names such as "Marcus Aurelius" are sometimes typed incorrectly using lowercase ("marcus aurelius").
12460
     *
12461
     * @param string $names
12462
     * @param string $delimiter
12463
     * @param string $encoding
12464
     *
12465
     * @return string
12466
     */
12467 1
    private static function str_capitalize_name_helper(string $names, string $delimiter, string $encoding = 'UTF-8'): string
12468
    {
12469
        // init
12470 1
        $namesArray = \explode($delimiter, $names);
12471
12472 1
        if ($namesArray === false) {
12473
            return '';
12474
        }
12475
12476
        $specialCases = [
12477 1
            'names' => [
12478
                'ab',
12479
                'af',
12480
                'al',
12481
                'and',
12482
                'ap',
12483
                'bint',
12484
                'binte',
12485
                'da',
12486
                'de',
12487
                'del',
12488
                'den',
12489
                'der',
12490
                'di',
12491
                'dit',
12492
                'ibn',
12493
                'la',
12494
                'mac',
12495
                'nic',
12496
                'of',
12497
                'ter',
12498
                'the',
12499
                'und',
12500
                'van',
12501
                'von',
12502
                'y',
12503
                'zu',
12504
            ],
12505
            'prefixes' => [
12506
                'al-',
12507
                "d'",
12508
                'ff',
12509
                "l'",
12510
                'mac',
12511
                'mc',
12512
                'nic',
12513
            ],
12514
        ];
12515
12516 1
        foreach ($namesArray as &$name) {
12517 1
            if (\in_array($name, $specialCases['names'], true)) {
12518 1
                continue;
12519
            }
12520
12521 1
            $continue = false;
12522
12523 1
            if ($delimiter === '-') {
12524 1
                foreach ((array) $specialCases['names'] as &$beginning) {
12525 1
                    if (self::strpos($name, $beginning, 0, $encoding) === 0) {
12526 1
                        $continue = true;
12527
                    }
12528
                }
12529 1
                unset($beginning);
12530
            }
12531
12532 1
            foreach ((array) $specialCases['prefixes'] as &$beginning) {
12533 1
                if (self::strpos($name, $beginning, 0, $encoding) === 0) {
12534 1
                    $continue = true;
12535
                }
12536
            }
12537 1
            unset($beginning);
12538
12539 1
            if ($continue === true) {
12540 1
                continue;
12541
            }
12542
12543 1
            $name = self::ucfirst($name);
12544
        }
12545
12546 1
        return \implode($delimiter, $namesArray);
12547
    }
12548
12549
    /**
12550
     * Generic case sensitive transformation for collation matching.
12551
     *
12552
     * @param string $str <p>The input string</p>
12553
     *
12554
     * @return string|null
12555
     */
12556 6
    private static function strtonatfold(string $str)
12557
    {
12558 6
        return \preg_replace(
12559 6
            '/\p{Mn}+/u',
12560 6
            '',
12561 6
            \Normalizer::normalize($str, \Normalizer::NFD)
12562
        );
12563
    }
12564
12565
    /**
12566
     * @param int|string $input
12567
     *
12568
     * @return string
12569
     */
12570 31
    private static function to_utf8_convert_helper($input): string
12571
    {
12572
        // init
12573 31
        $buf = '';
12574
12575 31
        if (self::$ORD === null) {
12576 1
            self::$ORD = self::getData('ord');
12577
        }
12578
12579 31
        if (self::$CHR === null) {
12580 1
            self::$CHR = self::getData('chr');
12581
        }
12582
12583 31
        if (self::$WIN1252_TO_UTF8 === null) {
12584 1
            self::$WIN1252_TO_UTF8 = self::getData('win1252_to_utf8');
12585
        }
12586
12587 31
        $ordC1 = self::$ORD[$input];
12588 31
        if (isset(self::$WIN1252_TO_UTF8[$ordC1])) { // found in Windows-1252 special cases
12589 31
            $buf .= self::$WIN1252_TO_UTF8[$ordC1];
12590
        } else {
12591 1
            $cc1 = self::$CHR[$ordC1 / 64] | "\xC0";
12592 1
            $cc2 = ((string) $input & "\x3F") | "\x80";
0 ignored issues
show
Bug introduced by
Are you sure you want to use the bitwise & or did you mean &&?
Loading history...
Bug introduced by
Are you sure you want to use the bitwise | or did you mean ||?
Loading history...
12593 1
            $buf .= $cc1 . $cc2;
12594
        }
12595
12596 31
        return $buf;
12597
    }
12598
12599
    /**
12600
     * @param string $str
12601
     *
12602
     * @return string
12603
     */
12604 9
    private static function urldecode_unicode_helper(string $str): string
12605
    {
12606 9
        $pattern = '/%u([0-9a-fA-F]{3,4})/';
12607 9
        if (\preg_match($pattern, $str)) {
12608 7
            $str = (string) \preg_replace($pattern, '&#x\\1;', $str);
12609
        }
12610
12611 9
        return $str;
12612
    }
12613
}
12614