我正在使用PHPDocx库。基本上我遇到了分页问题这是我的代码
$html_body .= 'Lorem Ipsum is simply dummy text of the printing and typesetting industry';$html_body .= 'Lorem Ipsum is simply dummy text of the printing and typesetting industry';
我只想打破页面,以便段落出现在不同的页面上。 请帮帮我。 感谢
答案 0 :(得分:0)
如果您使用embedHTML()方法,唯一可以实现此目的的方法是将html代码分开,并在两者之间添加一个use addBreak()方法。像这样:
require_once '../../../classes/CreateDocx.inc';
$docx = new CreateDocx();
$paragraph1 = '<p>Lorem Ipsum is simply dummy text of the printing and type setting industry</p>';
$paragraph2 = '</br><p>Lorem Ipsum is simply dummy text of the printing and typesetting industry</p>';
$docx->embedHTML($paragraph1);
$docx->addBreak(array('type' => 'page'));
$docx->embedHTML($paragraph2);
$docx->createDocx('example_embedHTML_1');