You are here

protected static property StringUtils::$singleByteEncodings in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/zendframework/zend-stdlib/src/StringUtils.php \Zend\Stdlib\StringUtils::singleByteEncodings

A list of known single-byte character encodings (upper-case)

Type: string[]

File

vendor/zendframework/zend-stdlib/src/StringUtils.php, line 34

Class

StringUtils
Utility class for handling strings of different character encodings using available PHP extensions.

Namespace

Zend\Stdlib

Code

protected static $singleByteEncodings = [
  'ASCII',
  '7BIT',
  '8BIT',
  'ISO-8859-1',
  'ISO-8859-2',
  'ISO-8859-3',
  'ISO-8859-4',
  'ISO-8859-5',
  'ISO-8859-6',
  'ISO-8859-7',
  'ISO-8859-8',
  'ISO-8859-9',
  'ISO-8859-10',
  'ISO-8859-11',
  'ISO-8859-13',
  'ISO-8859-14',
  'ISO-8859-15',
  'ISO-8859-16',
  'CP-1251',
  'CP-1252',
];