Skip to content

Instantly share code, notes, and snippets.

@farhadhp
Created March 19, 2022 09:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farhadhp/6f86179eefc85041acb71bec2cbeb2ff to your computer and use it in GitHub Desktop.
Save farhadhp/6f86179eefc85041acb71bec2cbeb2ff to your computer and use it in GitHub Desktop.
Remove UTF8 Bom in PHP
// Remove UTF8 Bom
function removeUtf8Bom($text)
{
$bom = pack('H*', 'EFBBBF');
$text = preg_replace("/^$bom/", '', $text);
return $text;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment