Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created September 18, 2013 07:08
Show Gist options
  • Save Clorith/6605547 to your computer and use it in GitHub Desktop.
Save Clorith/6605547 to your computer and use it in GitHub Desktop.
function force_utf8( $string ) {
$utf8 = "";
$string = str_split( $string );
for ( $i = 0; $i < count( $string ); $i++ ) {
$utf8 .= mb_convert_encoding( $string[$i], "UTF-8", mb_detect_encoding( $string[$i] ) );
}
return $utf8;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment