我想向我的用户——人民国防军档案显示。 我为什么利用国际地理信息小组向人民抵抗力量展示,这就是我要追踪对人民抵抗力量的点击,并掩饰被挽救的国防军的真正位置。
I ve been searching on the Internet and only found how to show save dialog to the users and creating a PDF, not show the files to the users.
我想要的是向用户展示我的PDF文件,而不是制造或下载PDF。
这里我是正式项目文件:
<?php
header( Content-type: application/pdf );
readfile( the.pdf );
?>
我的理论研究-教学法:
open(PDF, "the.pdf") or die "could not open PDF [$!]";
binmode PDF;
my $output = do { local $/; <PDF> };
close (PDF);
print "Content-Type: application/pdf
";
print "Content-Length: " .length($output) . "
";
print $output
如果你在废墟上这样做,请向我说。 但我不相信我的服务器是否支持铁路。
如果我的法典与显示pdf的方法相距甚远,我不了解有关pdf处理和如何解决这一问题的任何情况。
让我们假设用户有Adobe Reader plug-in。 因此,如何解决我的问题?
<><>>:> 我愿向人民抵抗力量提供便衣档案。 我的主要目的:跟踪我的pdf档案,并使用一些轮胎。
<><>>:> 这里,我的主要著作是:
<?php
$file= /files/the.pdf ;
header( Content-type: application/pdf );
header( Content-Disposition: inline; filename="the.pdf" );
@readfile($file);
?>
<><>>:> 现在该法典正在发挥作用。 但是,装载进展条码(Adobe Reader X plugin)确实显示了这一点。 为什么? 谁能帮助我? 我的主要法典是:
<?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);
?>
感谢!