PHP 在线预览word、excel、ppt、pdf、txt等文档文件
2021-04-01 04:28
                         标签:src   office   官方   ane   header   预览   pps   lse   xlsx    // PDF、text可以直接网页打开查看 PHP 在线预览word、excel、ppt、pdf、txt等文档文件 标签:src   office   官方   ane   header   预览   pps   lse   xlsx    原文地址:https://www.cnblogs.com/Mr-zhangwenqiang/p/12575840.html
// word、excel、ppt 文件可以通过office官方打开
$fileType = strrchr($fileUrl,‘.‘);//获取文件类型
if($fileType == ‘PDF‘ || $fileType ==‘txt‘){
	//直接网页中打开
}else if($fileType == ‘doc‘ || $fileType ==‘docx‘ || $fileType ==‘xlsx‘ || $fileType ==‘xls‘){
	header(‘HTTP/1.1 301 Moved Permanently‘);
	header(‘Location: https://view.officeapps.live.com/op/view.aspx?src=‘.$fileUrl);//fileUrl 必须是绝对路径
}
上一篇:Zabbix 监控网站的访问量
下一篇:C#异步编程
文章标题:PHP 在线预览word、excel、ppt、pdf、txt等文档文件
文章链接:http://soscw.com/index.php/essay/70777.html