Pdf文件下载

时间:2013-04-08 15:27:41

标签: php

我已链接到像这样创建的pdf文件

<?php echo '<a href="/test.com'. str_replace('\\', '/', $link).'" TITLE="download" ?>

我可以在以下脚本中使用此链接吗?

if ($file && is_file($file))
{
    header("Content-Type: application/octet-stream");
    header("Content-Disposition:$attach filename=\"".$filepath['basename']."\"");
    header("Content-Transfer-Encoding: binary");
    header("Content-Length: ".filesize($file));
    fpassthru(fopen($file, "r"));
}
else
{
    echo "File not find ($file)!";
}

0 个答案:

没有答案