liugu / mht2html

PHP class to convert MHT file to HTML

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Mht to HTML

A fast memory effecient PHP class to convert MHT file to HTML (and images)

Usage:

require('MthToHtml.php');
$mth = new MhtToHtml('./mthfile.mht', './output' /* output directory, default to './html' */);

// optional, save images using images' md5 as name, around 2 times slower but can make sure there's no duplicate images saved
// $mth->setReplaceImageName(true);

$time = microtime(true);
$mth->parse();
$time = microtime(true) - $time;
echo 'Time Used: ', $time, PHP_EOL, 'Peak Memory:', memory_get_peak_usage();

About

PHP class to convert MHT file to HTML


Languages

Language:PHP 100.0%