Home
last modified time | relevance | path

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

/plugin/authgooglesheets/vendor/symfony/polyfill-php72/
H A Dbootstrap.php56 …function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encodi… function
/plugin/combo/vendor/symfony/polyfill-mbstring/
H A Dbootstrap.php128 if (!function_exists('mb_scrub')) {
129 function mb_scrub($string, $encoding = null) { $encoding = null === $encoding ? mb_internal_encoding() : $encoding; return mb_convert_encoding($string, $encoding, $encoding); } function
H A Dbootstrap80.php124 if (!function_exists('mb_scrub')) {
125 function mb_scrub(?string $string, ?string $encoding = null): string { $encoding ??= mb_internal_encoding(); return mb_convert_encoding((string) $string, $encoding, $encoding); } function