我已链接到像这样创建的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)!";
}