标签: php
我想使用php在浏览器中打开word文件。我读过某处无法在浏览器中打开的信息,您应该使用iframe。如果我不想使用iframe打开它,谁能建议我一些解决方案。我可能会使用此代码在浏览器上查看word文件。
<?php header('Content-disposition: inline'); header('Content-type: application/msword'); readfile('filename'); exit; ?>