Intl/lib/Encoding/UTF16BE.php

17 lines
342 B
PHP
Raw Normal View History

2018-08-30 11:06:15 -04:00
<?php
/** @license MIT
* Copyright 2018 J. King et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
namespace MensBeam\Intl\Encoding;
class UTF16BE extends UTF16 {
protected const BE = true;
public const NAME = "UTF-16BE";
public const LABELS = [
2020-10-15 10:39:44 -04:00
"unicodefffe",
"utf-16be",
2020-10-05 16:06:11 -04:00
];
2018-08-30 11:06:15 -04:00
}