Guest User

Untitled

a guest
Jul 16th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. $binary = $row['PDF_FILE_STORED'];
  2. file_put_contents('my.pdf', $binary);
  3. header('Content-type: application/pdf');
  4. header("Content-Transfer-Encoding: Binary");
  5. header("Content-Length: ".filesize($binary));
  6. header("Content-Disposition: attachment;filename=my.pdf");
  7. ob_clean();
  8. flush();
  9. echo $binary;
Add Comment
Please, Sign In to add comment