Search code examples
phpdompdf

Custom DomPDF names


I can render a DomPDF file with the following line :

$dompdf->stream($fileNo.$name.$description.".pdf");

It outputs a pdf that looks like : 121CharlesLakeHome.pdf

How would I put a dash in there to make it look like this : 121-Charles-LakeHome.pdf

I have tried this :

$dompdf->stream($fileNo."-"$name."-"$description.".pdf");

No Workie. Any Suggestions?


Solution

  • got syntax error. You forgot dot(point) '.' in string $dompdf->stream($fileNo."-"$name."-"$description.".pdf"); should be this $dompdf->stream($fileNo."-".$name."-".$description.".pdf");