Skip to content

Instantly share code, notes, and snippets.

@jsor
Created June 25, 2012 13:26
Show Gist options
  • Save jsor/2988568 to your computer and use it in GitHub Desktop.
Save jsor/2988568 to your computer and use it in GitHub Desktop.
$fp = fopen("data.UTF-8.xml", "r");
stream_filter_prepend($fp, "convert.iconv.UTF-8/ISO-8859-1");
$converted = '';
while (!feof($fp)) {
$converted .= fread($fp, 1000);
}
fclose($fp);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment