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

2024年11月19日 11:33
有3个网友回答
网友(1):

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

?>



网友(2):

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

网友(3):

赞同SH377587