php 下载 word文档

  header('Content-type: application/octet-stream');
        header('Content-Disposition: attachment; filename="'.$dname.'"');
        header('Content-Transfer-Encoding: binary');
        header('Expires: 0');
        ob_clean();
        flush();
        readfile($fpath . $fname);

posted @ 2015-12-17 17:42  dcj890828  阅读(124)  评论(0编辑  收藏  举报