header("Content-Type: application/msword");
header("Content-Disposition: attachment; filename=doc.doc"); //指定文件名称
header("Pragma: no-cache");
header("Expires: 0");
$html = \'
博客 |
PHP将网页代码导出word文档 |
echo $html;
?>
注:如果使用 smarty 方式 ,可在php页的最前面加入
header("Content-Type: application/msword");
header("Content-Disposition: attachment; filename=doc.doc"); //指定文件名称
header("Pragma: no-cache");
header("Expires: 0");
即可。