Файл: vendor/league/csv/src/ByteSequence.php
Строк: 21
<?php
/**
* League.Csv (https://csv.thephpleague.com)
*
* (c) Ignace Nyamagana Butera <nyamsprod@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace LeagueCsv;
/**
* Defines constants for common BOM sequences.
*/
interface ByteSequence
{
const BOM_UTF8 = "xEFxBBxBF";
const BOM_UTF16_BE = "xFExFF";
const BOM_UTF16_LE = "xFFxFE";
const BOM_UTF32_BE = "x00x00xFExFF";
const BOM_UTF32_LE = "xFFxFEx00x00";
}