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);