gpt4 book ai didi

php - 将 HTML 转换为 doc 和 docx 格式时的分页符 - PHP

转载 作者:太空狗 更新时间:2023-10-29 14:42:22 25 4
gpt4 key购买 nike

我已经使用 PHP 将 HTML 转换为 DOC 格式。

请查看下面的屏幕截图。

enter image description here

我的问题是我需要在第一页打印第一个表格,在第二页打印第二个表格。

这是我的一组代码。

header("Content-type: application/vnd.ms-word");
header("Content-Disposition: attachment;Filename=document_name.doc");
echo $html = '<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML TO WORD</title>
</head>
<style type="text/css">
.table {
page-break-after: always;
}
</style>
<body>
<table width="600" border="1">
<tr>
<td height="105">&nbsp;</td>
</tr>
<tr>
<td style="text-align:center; font-size:30px;color:#ed6500;"><b>Title</b></td>
</tr>
<tr>
<td style="text-align:center; color:#595959;">Author:
<span style="color:#9d402b; text-decoration:underline;">Author name</span></td>
</tr>
</table>
<table width="600" border="1">
<tr>
<td>Table Of Contents</td>
</tr>
<tr>
<td>&nbsp;</td>
</tr>
<tr>
<td>Category 1</td>
</tr>
<tr>
<td style="padding-left:30px;">Sub Category 1</td>
</tr>
</table>
</body>
</html>';

如何做到这一点?

提前致谢...

最佳答案

把这个放在你需要分页的地方:

<br clear="all" style="page-break-before:always" />

这对我有用

关于php - 将 HTML 转换为 doc 和 docx 格式时的分页符 - PHP,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6235038/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com