TCPDF Save file to folder?

后端 未结 11 2072
耶瑟儿~
耶瑟儿~ 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:15

    If you still get

    TCPDF ERROR: Unable to create output file: myfile.pdf

    you can avoid TCPDF's file saving logic by putting PDF data to a variable and saving this string to a file:

    $pdf_string = $pdf->Output('pseudo.pdf', 'S');
    file_put_contents('./mydir/myfile.pdf', $pdf_string);
    

提交回复
热议问题