PHP 在線預覽word、excel、ppt、pdf、txt等文檔文件


// 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 必須是絕對路徑
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM