for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the League.csv library
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
* @version 9.0.0
* @package League.csv
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace League\Csv;
* Defines constants for common BOM sequences
* @since 9.0.0
* @author Ignace Nyamagana Butera <[email protected]>
interface BOM
{
* UTF-8 BOM sequence
const UTF8 = "\xEF\xBB\xBF";
* UTF-16 BE BOM sequence
const UTF16_BE = "\xFE\xFF";
* UTF-16 LE BOM sequence
const UTF16_LE = "\xFF\xFE";
* UTF-32 BE BOM sequence
const UTF32_BE = "\x00\x00\xFE\xFF";
* UTF-32 LE BOM sequence
const UTF32_LE = "\xFF\xFE\x00\x00";
}