Zend_Pdfを使用して、1つのPDFドキュメントの複数のページに「helloworld」を表示するにはどうすればよいですか?
$pdf = new Zend_Pdf();
$page = new Zend_Pdf_Page(Zend_Pdf_Page::SIZE_A4);
$font = Zend_Pdf_Font::fontWithName(Zend_Pdf_Font::FONT_HELVETICA);
$page->setFont($font, 24) ->drawText('Hello World,', 72, 720);
$pdf->pages[] = $page;
$pdf->save('new.pdf');
上記のコードを試しましたが、複数のページを繰り返すためのコードのチャンクを書くことができません