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

时间:2024-03-18 07:16:04

// 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 必须是绝对路径
}