View pdf file on browser by PHP
$file = '63f78a20ccab015aaa7a76f8161e665d.pdf';
$filename = 'filename.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
@readfile($file);
Download pdf file by PHP
$file = '63f78a20ccab015aaa7a76f8161e665d.pdf';
$filename = 'filename.pdf';
header("Content-Disposition: attachment; filename=" . $filename);
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");
header("Content-Description: File Transfer");
@readfile($file);
No comments:
Post a Comment