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

时间:2011-06-04 05:53:37

标签: php html doc

我已使用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>';

如何做到这一点?

提前致谢...

2 个答案:

答案 0 :(得分:17)

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

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

这对我有用

答案 1 :(得分:1)

试试这个:

Page 1 contents:
<hr>
Page 2 contents:
<hr>
Page 3 contents:

并在CSS中:

hr {
  page-break-after: always;
}