I'm tring to do a file download with php I have this code:
$dompdf->render();
$arquivo = $dompdf->output();
$tmp = tempnam(sys_get_temp_dir(), "pdf");
file_put_contents($tmp, $arquivo);
rename($tmp, $tmp .= '.pdf');
header("Content-Type: application/pdf");
header("Content-Disposition: attachment; filename=".basename($nomeDoPdf));
readfile($tmp);
unset($tmp);
When it does the download and I open the file, it says it's not possible to open the file.
source https://stackoverflow.com/questions/70115510/download-pdf-with-php
Comments
Post a Comment