如何使用php

时间:2019-05-24 11:46:34

标签: php html

我想从我的站点下载一个音频文件,其中包含元数据,该元数据存储在数据库中,因此我可以动态下载该文件。

 <?php
  $path=$_GET['file'];
  list($file, $name) = explode('..',$path);
  header("Content-Description: File Transfer"); 
  header("Content-Type: application/octet-stream"); 
  header("Content-Length: ".filesize($file));
  header("Content-Disposition: attachment; filename=".$name.".mp3"); 
  header("Content-Length: ".filesize($file));
  readfile ($file);
 ?>

有人可以帮我吗?

0 个答案:

没有答案