Home
last modified time | relevance | path

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

/plugin/combo/vendor/symfony/polyfill-mbstring/
H A DMbstring.php77 private static $encodingList = ['ASCII', 'UTF-8']; variable in Symfony\\Polyfill\\Mbstring\\Mbstring
443 public static function mb_detect_encoding($str, $encodingList = null, $strict = false) argument
445 if (null === $encodingList) {
446 $encodingList = self::$encodingList;
448 if (!\is_array($encodingList)) {
449 $encodingList = array_map('trim', explode(',', $encodingList));
451 $encodingList = array_map('strtoupper', $encodingList);
454 foreach ($encodingList as $enc) {
479 public static function mb_detect_order($encodingList = null) argument
481 if (null === $encodingList) {
[all …]