Creating a pdf file using the Symfony framework

I am using Symfony 1.4 and I need to create a pdf file from Word / HTML with some fields added by the user using the form. I met this problem in simple php a few years ago, but I am wondering if there is a ready-made solution within Symfony? Or someone wants to share their idea about it ...

+4
source share
1 answer

I used http://www.symfony-project.org/plugins/sfTCPDFPlugin with Symfony 1.4 and have not encountered any problems yet. SfTCPDFPlugin provides an abstraction for TCPDF, an open source PHP for creating PDF documents.

+5
source

Source: https://habr.com/ru/post/1299333/


All Articles