请问一下如何在网页上显示doc、ppt、或pdf文档,应该怎么做

2024-11-19 11:33:57
推荐回答(3个)
回答1:

/*$pdf = 'test.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: attachment; filename="'.$pdf.'"');
readfile($pdf);*/

?>



回答2:

网页上显示word,ppt,pdf等文档,基本上都是调用用户本身计算机上安装的对应软件,若用户计算机上没有安装对应的软件,无法仅通过浏览器来显示你说的内容的

回答3:

赞同SH377587