Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
src
/
Services
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/src/Services/GeneratePdfService.php
<?php namespace App\Services; use Spipu\Html2Pdf\Html2Pdf; class GeneratePdfService { public function Pdf($filename, $template){ try{ $html2pdf = new Html2Pdf('P', 'A4', 'fr', true, 'UTF-8'); $html2pdf->writeHTML($template); $path = $filename; $html2pdf->output($path,'F'); }catch (HTML2PDF_exception $e){ die($e); } } }