php处理文件下载的代码

WBOY
Libérer: 2016-07-25 08:45:32
original
879 Les gens l'ont consulté

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


Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal
À propos de nous Clause de non-responsabilité Sitemap
Site Web PHP chinois:Formation PHP en ligne sur le bien-être public,Aidez les apprenants PHP à grandir rapidement!