php处理文件下载的代码

WBOY
풀어 주다: 2016-07-25 08:45:32
원래의
879명이 탐색했습니다.

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


원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿
회사 소개 부인 성명 Sitemap
PHP 중국어 웹사이트:공공복지 온라인 PHP 교육,PHP 학습자의 빠른 성장을 도와주세요!