PHP code for processing file downloads

WBOY
Release: 2016-07-25 08:45:32
Original
919 people have browsed it

用在服务器上提供下载的php代码,可以指定被下载的文件名,可以动态指定文件内容

  1. // local file that should be send to the client
  2. $local_file = 'test.zip';
  3. // filename that the user gets as default
  4. $download_file = 'your-download-name.zip';
  5. if(file_exists($local_file) && is_file($local_file)) {
  6. // send headers
  7. header('Cache-control: private');
  8. header('Content-Type: application/octet-stream');
  9. header('Content-Length: '.filesize($local_file));
  10. header('Content-Disposition: filename='.$download_file);
  11. // flush content
  12. flush();
  13. /*
  14. ** You can also remove the following part and
  15. ** replace it trough a database command fetching
  16. ** the download data
  17. */
  18. // open file stream
  19. $file = fopen($local_file, "rb");
  20. // send the file to the browser
  21. print fread ($file, filesize($local_file));
  22. // close file stream
  23. fclose($file);}
  24. else {
  25. die('Error: The file '.$local_file.' does not exist!');
  26. }
复制代码

php


Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!