用php打开密码保护的pdf

时间:2013-08-09 02:19:00

标签: php pdf password-protection

我只是想知道是否可以在 php 中添加密码标题。

这是我的代码

$file = '../../files/'.$pdfName.'.pdf';
$filename = $pdfName.'.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);

0 个答案:

没有答案