我的目录中有不带水印的pdf,因此我不想显示文件结构,因此我使用了readfile($ path);方法,
现在,在显示pdf之前,我无法在pdf上应用水印。
我尝试了pdf等多种方法来测试解析器,但这并不能解决我的问题
在我在php中使用的代码下面
ob_clean();
flush();
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=filename.pdf");
@readfile($path);
exit;