You are here

public static function StringUtils::getSingleByteEncodings in Zircon Profile 8

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

Get a list of all known single-byte character encodings

Return value

string[]

1 call to StringUtils::getSingleByteEncodings()
Native::getSupportedEncodings in vendor/zendframework/zend-stdlib/src/StringWrapper/Native.php
Get a list of supported character encodings

File

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

Class

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

Namespace

Zend\Stdlib

Code

public static function getSingleByteEncodings() {
  return static::$singleByteEncodings;
}