Aslında tüm dosyaları html görünümünde gmail gibi html olarak görmek istiyorum.
Ben html doc görünümü için aşağıdaki kodu kullanılır ama burada yazı stili görüntüleme (kalın, renk, vs ..) değil
function parseWord($userDoc)
{
$fileHandle = fopen($userDoc, "r");
$line = @fread($fileHandle, filesize($userDoc));
$lines = explode(chr(0x0D),$line);
$outtext = "";
foreach($lines as $thisline)
{
$pos = strpos($thisline, chr(0x00));
if (($pos !== FALSE)||(strlen($thisline)==0))
{
} else {
$outtext .= $thisline." ";
}
}
$outtext = preg_replace("/[^a-zA-Z0-9\s\,\.\-\n\r\t@\/\_\(\)]/","",$outtext);
return $outtext;
}
$userDoc = "cv.doc";
$text = parseWord($userDoc);
echo $text;
?>
Is there any way to view all files as html for display in browser? I am not interested in use plugins and any s/w.