码迷,mamicode.com
首页 > Web开发 > 详细

PHP 在线预览word、excel、ppt、pdf、txt等文档文件

时间:2020-03-26 17:51:55      阅读:626      评论:0      收藏:0      [点我收藏+]

标签:src   office   官方   ane   header   预览   pps   lse   xlsx   

// PDF、text可以直接网页打开查看
// 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 必须是绝对路径
}

PHP 在线预览word、excel、ppt、pdf、txt等文档文件

标签:src   office   官方   ane   header   预览   pps   lse   xlsx   

原文地址:https://www.cnblogs.com/Mr-zhangwenqiang/p/12575840.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!