php - Moodle download a created PDF -


i create pdf in moodle using following code

$pdf = new pdf;  $pdf->addpage();  $pdf->write(1, "test");  $pdf->output(); 

how make download in browser instead of opening in browser?

// force browser download output $pdf->output('filename.pdf','d'); 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -