till
2008-03-24 0b17277eaeebdee278230d7cd2550a1a9e2fcf9f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
 
require_once('../program/lib/html2text.inc');
 
$htmlText = $HTTP_RAW_POST_DATA;
$converter = new html2text($htmlText);
 
header('Content-Type: text/plain; charset=UTF-8');
$plaintext = $converter->get_text();
 
$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;
 
?>