TCPDF Save file to folder?

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

    nick's example saves it to your localhost.
    But you can also save it to your local drive.
    if you use doublebackslashes:

     $filename= "Invoice.pdf"; 
     $filelocation = "C:\\invoices";  
    
     $fileNL = $filelocation."\\".$filename;
     $pdf->Output($fileNL,'F');
    
     $pdf->Output($filename,'D'); // you cannot add file location here
    

    P.S. In Firefox (optional) Tools> Options > General tab> Download >Always ask me where to save files

提交回复
热议问题