首頁  >  文章  >  後端開發  >  php處理檔案下載的程式碼

php處理檔案下載的程式碼

WBOY
WBOY原創
2016-07-25 08:45:32931瀏覽

用在服务器上提供下载的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


陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn