我在名为print_person
和print_section
的函数中有2个
print_person
函数生成一个pdf文件,该文件是个人资格证书的报告。
print_section
会生成包含部分详细信息和人员列表的pdf文件。
如果可能的话,在生成节报告时,我想生成每个个人报告,并将其作为pdf附件附加在节报告中,而不必先将其保存到文件中。
我正在使用TCPDF作为codeigniter中的库来生成报告。
//this below is inside the "print_section" report function to print each person
foreach ($personnel_lst as $key => $pers){
...
//printing person
...
//parameters = $id = id of the person, 'E'= output option for TCPDF output function.
$pers_file = $this->print_person($id, 'E');
$file = chunk_split($pers_file);
$pdf->Annotation(1, 1, 0, 0, '', array('Subtype'=>'FileAttachment', 'Name' => 'Paperclip', 'FS' => $pers_file ));
}//end for each