Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
现在我用TCPDF每页为每个人生成动态工资单。现在我想使用,生成3每页的工资单。请帮助我。TCPDFPHP
TCPDF
3
PHP
您将需要添加到您的循环:
for($x=0; $x<count($records); $x++ ) { if( mod(x,3) == 0 ) pdf->addPage(); //--- do pdf stuff }