I get it. Check out the solution for reading Word Doc and formatting it in HTML:
$filename = "ACME.doc";
$word = new COM("word.application") or die ("Could not initialise MS Word object.");
$word->Documents->Open(realpath($filename));
$new_filename = substr($filename,0,-4) . ".html";
$word->Documents[1]->SaveAs("C:/a1/projects/---full path--- /".$new_filename,8);
$word->Documents[1]->Close(false);
$word->Quit();
$word = NULL;
unset($word);
$fh = fopen($new_filename, 'r');
$contents = fread($fh, filesize($new_filename));
echo $contents;
fclose($fh);
... "charset = UTF-8" PHP, ... .
, SaveAs , , , .
.