我想在php中创建下载链接。
例如如果我的目录中有2个文件,那么如何制作下载链接,如download.php?id = 1或2或其他任何内容。
那么download.php文件中的代码是什么。
请有人告诉我代码。
答案 0 :(得分:0)
使用$_GET
示例:
<a href="download?id=1">link</a>
<?php
$id=$_GET['id'];
if(is_numeric($id)){
$filename = 'file.pdf'; // of course find the exact filename....
header( 'Pragma: public' ); // required
header( 'Expires: 0' );
header( 'Cache-Control: must-revalidate, post-check=0, pre-check=0' );
header( 'Cache-Control: private', false ); // required for certain browsers
header( 'Content-Type: application/octet-stream' );
header( 'Content-Disposition: attachment; filename="'. basename($filename) . '";' );
header( 'Content-Transfer-Encoding: binary' );
header( 'Content-Length: ' . filesize( $filename ) );
readfile( $filename );
exit;
}
?>
答案 1 :(得分:0)
我使用过这样的东西:
$fileId = $_GET['id'];
// do something with that id and return the file path / name
$path = ""; //server path / file name
header("Content-Type: application/octet-stream"); //
header("Content-Length: " . filesize($path));
header('Content-Disposition: attachment; filename='.$path);
readfile($path);
答案 2 :(得分:0)
为了能够使用?id=xx
链接下载,您需要数据库表,它将数据库ID与文件名相关联。
在php中,您可以通过以下方式获取用户发送的ID:
$id = (int)$_GET["id"];
/*ADD YOUR GET FILE NAME CODE HERE*/
header("Content-Disposition: attachment; filename=$filename");
header("Content-Size: ".filesize($filename));
readfile($filename); //Send file to user