blob: 7f74ac622cfb8532dba063a0ac396068352a64a8 (
plain)
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;
?>
|