我想在php中制作下载链接。
例如,如果我的目录中有 2 个文件,那么如何制作下载链接,例如 download.php?id=1 或 2 或其他任何东西。
那么 download.php 文件中的代码是什么。
请有人告诉我代码。
我想在php中制作下载链接。
例如,如果我的目录中有 2 个文件,那么如何制作下载链接,例如 download.php?id=1 或 2 或其他任何东西。
那么 download.php 文件中的代码是什么。
请有人告诉我代码。
利用$_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;
}
?>
我用过这样的东西:
$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);
为了能够使用 链接下载?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