Skip to content

Instantly share code, notes, and snippets.

@AV4TAr
Created June 12, 2012 14:44
Show Gist options
  • Select an option

  • Save AV4TAr/2917947 to your computer and use it in GitHub Desktop.

Select an option

Save AV4TAr/2917947 to your computer and use it in GitHub Desktop.
<?php
function file_get_contents_utf8($fn) {
$content = file_get_contents($fn);
return mb_convert_encoding($content, 'UTF-8',
mb_detect_encoding($content, 'UTF-8, ISO-8859-1', true));
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment