如何在php中创建Word文档页眉/页脚

前端之家收集整理的这篇文章主要介绍了如何在php中创建Word文档页眉/页脚前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我在PHP中的文档中添加了页眉/页脚.但我在最后一页有两次页脚内容.
我有这个代码用户: –

    PHP
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=HelloWorld.doc");
?>

最后一页有错误.它在页面内容之后也显示两次页脚内容.

最佳答案
您需要在页面顶部插入HTTP标头.在页面上打印任何内容之前,应始终声明HTTP标头.

PHP
header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=HelloWorld.doc");
?>
Meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">

此外,您还可以查看PHPWord库.它会让你的生活更轻松:
https://github.com/PHPOffice/PHPWord

猜你在找的HTML相关文章