thomascube
2008-02-28 58670b2a9d88f9eb72b86ef458e679aedf42a1db
bin/html2text.php
@@ -8,9 +8,14 @@
header('Content-Type: text/plain; charset=UTF-8');
$plaintext = $converter->get_text();
if (function_exists('html_entity_decode'))
$phpver = explode('.', phpversion());
$vernum = $phpver[0] . $phpver[1] . $phpver[2];
# html_entity_decode doesn't handle UTF character sets in PHP 4.x
if (($vernum >= 500) && function_exists('html_entity_decode'))
   print html_entity_decode($plaintext, ENT_COMPAT, 'UTF-8');
else
   print $plaintext;
?>
?>