Home
last modified time | relevance | path

Searched refs:split_length (Results 1 – 1 of 1) sorted by relevance

/template/twigstarter/vendor/symfony/polyfill-mbstring/
H A DMbstring.php542 public static function mb_str_split($string, $split_length = 1, $encoding = null) argument
550 if (1 > $split_length = (int) $split_length) {
565 while (65535 < $split_length) {
567 $split_length -= 65535;
569 $rx .= '.{'.$split_length.'})/us';
577 for ($i = 0; $i < $length; $i += $split_length) {
578 $result[] = mb_substr($string, $i, $split_length, $encoding);