// 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等文档文件
- C#在线预览文档(word,excel,pdf,txt,png)
- JAVA实现office文档(word、excel、ppt等)、压缩包在线预览,支持禁止下载功能、支持PC和手机
- [Asp.net]常见word,excel,ppt,pdf在线预览方案(转)
- ASP.NET Core2集成Office Online Server(OWAS)实现办公文档的在线预览与编辑(支持word\excel\ppt\pdf等格式)
- [转发]ASP.NET Core2集成Office Online Server(OWAS)实现办公文档的在线预览与编辑(支持word\excel\ppt\pdf等格式)
- Atitit.office word excel ppt pdf 的web在线预览方案与html转换方案 attilax 总结
- 在线预览文档(支持word、excel、ppt、pdf)+在线预览文档html版(转)
- C#在线预览文档(word,excel,pdf,txt,png)
- java在线预览txt、word、ppt、execel,pdf代码