Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F120826722
html2text.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Authored By
Unknown
Size
521 B
Referenced Files
None
Subscribers
None
html2text.php
View Options
<?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
;
?>
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Fri, Apr 24, 10:59 AM (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
18817458
Default Alt Text
html2text.php (521 B)
Attached To
Mode
R113 roundcubemail
Attached
Detach File
Event Timeline