This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Remove BOM from a single file | |
* | |
* @param string $filename | |
* @return bool | |
*/ | |
function stripUtf8BomFromFile($filename) { | |
$bom = pack('CCC', 0xEF, 0xBB, 0xBF); |