TCPDF Save file to folder?

后端 未结 11 2071
耶瑟儿~
耶瑟儿~ 2020-12-13 07:05

I\'m using TCPDF to print a receipt and then send it to customer with phpMailer, but I have a problem:

I have no idea how to save the file into a pdf.

11条回答
  •  南方客
    南方客 (楼主)
    2020-12-13 07:28

    This worked for me, saving to child dir(temp_pdf) under the root:

    $sFilePath = $_SERVER['DOCUMENT_ROOT'] . '//temp_pdf/file.pdf' ;
    $pdf->Output( $sFilePath , 'F');
    

    Remember to make the dir writeable.

提交回复
热议问题