Skip to content

Instantly share code, notes, and snippets.

@mckelvey
Created September 14, 2012 23:11
Show Gist options
  • Save mckelvey/3725539 to your computer and use it in GitHub Desktop.
Save mckelvey/3725539 to your computer and use it in GitHub Desktop.
Character Conversion
function convertCharset($contents) {
iconv_set_encoding("internal_encoding", "ISO-8859-15");
iconv_set_encoding("output_encoding", "ISO-8859-1");
ob_start("ob_iconv_handler");
echo $contents;
$contents = ob_get_clean();
$contents = strtr($contents, array(
"\x80" => "e",
"\x81" => " ",
"\x82" => "'",
"\x83" => 'f',
"\x84" => '"',
"\x85" => "...",
"\x86" => "+",
"\x87" => "#",
"\x88" => "^",
"\x89" => "0/00",
"\x8A" => "S",
"\x8B" => "<",
"\x8C" => "OE",
"\x8D" => " ",
"\x8E" => "Z",
"\x8F" => " ",
"\x90" => " ",
"\x91" => "`",
"\x92" => "'",
"\x93" => '"',
"\x94" => '"',
"\x95" => "*",
"\x96" => "-",
"\x97" => "&mdash;",
"\x98" => "~",
"\x99" => "(TM)",
"\x9A" => "s",
"\x9B" => ">",
"\x9C" => "oe",
"\x9D" => " ",
"\x9E" => "z",
"\x9F" => "Y")
);
return str_replace('iso-8859-1', 'utf-8', utf8_encode($contents));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment