我想显示我的用户 PDF 文件。我使用 CGI 显示 PDF 的原因是我想跟踪 PDF 的点击,并隐藏保存 PDF 的真实位置。
我一直在互联网上搜索,只发现如何显示保存对话框的用户和创建一个 PDF 文件,而不是显示的文件给用户。
我想要的是向用户展示我的 PDF 文件,而不是创建或下载 PDF 文件。
下面是我从 PHP 官方文档中得到的信息:
<?php
header('Content-type: application/pdf');
readfile('the.pdf');
?>
还有我的 google 搜索结果 perl 代码:
open(PDF, "the.pdf") or die "could not open PDF [$!]";
binmode PDF;
my $output = do { local $/; <PDF> };
close (PDF);
print "Content-Type: application/pdf\n";
print "Content-Length: " .length($output) . "\n\n";
print $output
如果你在 Ruby 上做,请告诉我。但我不确定我的服务器是否支持 Rails。
对不起,如果我的代码是太远的方法显示 pdf,因为我不知道任何关于 pdf 处理和如何实现这个问题。
假设用户有 AdobeReader 插件,那么,如何解决这个问题呢?
编辑 : 我想显示简单的 PDF 文件。我的主要目的: 跟踪我的 pdf 文件和使用一些奇特的网址。
编辑 : 这是我的主要 PHP 代码:
<?php
$file='/files/the.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="the.pdf"');
@readfile($file);
?>
编辑 : 现在代码正在工作。但是加载进度条(在 AdobeReaderX 插件上)没有显示出来。为什么?有人能帮我吗?这是我的主要代码:
<?php
$file='./files/the.pdf';
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="the.pdf"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
@readfile($file);
?>
编辑 : 我所有的问题都解决了,这是最后的代码:
<?php
$file = './path/to/the.pdf';
$filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the end. */
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);
?>
谢谢! :)