Как удалить из строки метку UTF-8 with BOM

$bom = pack('H*', 'EFBBBF');
$string = preg_replace("/^$bom/", '', $string);