Generate PDF from .docx generated by PHPWord

前端 未结 4 1346
梦如初夏
梦如初夏 2021-01-01 21:07

I am creating .docx files from a template using PHPWord. It works fine but now I want to convert the generated file to PDF.

Fi

4条回答
  •  既然无缘
    2021-01-01 21:50

    You're trying to unlink the PDF file before saving it, and you have also to unlink the DOCX document, not the PDF one.

    Try this.

    $pdfWriter = \PhpOffice\PhpWord\IOFactory::createWriter($wordPdf , 'PDF');    
    $pdfWriter->save($filename.".pdf");
    unlink($wordPdf);
    

提交回复
热议问题