我有一张要导出为docx文档的表,任何人都可以提出一种方法,
我在左侧附加了网站图片,右侧是我要将其输出到docx中的文档。
谢谢
答案 0 :(得分:1)
在https://www.phpdocx.com/使用PHPDOCx。示例代码:
require_once 'pathToPHPDocX/classes/CreateDocx.inc';
$docx = new CreateDocx();
$html='<p>This is a simple paragraph with <strong>text in bold</strong>.</p>
<p>Now we include a list:</p>
<ul>
<li>First item.</li>
<li>Second item with subitems:
<ul>
<li>First subitem.</li>
<li>Second subitem.</li>
</ul>
</li>
<li>Third subitem.</li>
</ul>
<p>And now a table:</p>
<table>
<tbody><tr>
<td>Cell 1 1</td>
<td>Cell 1 2</td>
</tr>
<tr>
<td>Cell 2 1</td>
<td>Cell 2 2</td>
</tr>
</tbody></table>';
$docx->embedHTML($html);
$docx->createDocx('simpleHTML');
如果要将外部页面转换为html,请使用file_get_contents函数将内容添加到变量中,然后将其发送到embedHTML