Advertisement
virbo

Document Reader (Word/Excel/Ppt)

Feb 11th, 2016
337
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.64 KB | None | 0 0
  1. <?php
  2.     //file yang akan ditampilkan harus berada di server public (Online)
  3.     //Contoh alamat lengkap file: http://nama_domain/namafile.docx
  4.     //Dokumentasi: https://blogs.office.com/2013/04/10/office-web-viewer-view-office-documents-in-a-browser/  ==> (broken link)
  5.     //URL Dokumentasi terbaru: https://support.office.com/id-id/article/menampilkan-dokumen-office-online-1cc2ea26-0f7b-41f7-8e0e-6461a104544e?ui=id-ID&rs=id-ID&ad=ID
  6.  
  7.     //LINK preview: https://view.officeapps.live.com/op/view.aspx?src=<<source dokumen>>
  8.  
  9.     $url = "alamat_lengkap_file";
  10.     echo file_get_contents("https://view.officeapps.live.com/op/view.aspx?src=".urlencode($url)."");
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement