欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

init.php文件 PHP实现文件下载

程序员文章站 2022-05-04 18:27:18
...
 1publicfunction get_download_file()
 2{
 3header ( 'Content-Description: File Transfer' );
 4header ( 'Content-Type: application/octet-stream' );
 5header ( 'Content-Disposition: attachment; filename=' . basename ( $file ));
 6header ( 'Content-Transfer-Encoding: binary' );
 7header ( 'Expires: 0' );
 8header ( 'Cache-Control: must-revalidate' );
 9header ( 'Pragma: public' );
10header ( 'Content-Length: '  .  filesize ( $file ));
11ob_clean ();
12flush ();
13readfile ( $file );
14exit;
15 }

以上就介绍了init.php文件 PHP实现文件下载,包括了init.php文件方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

相关标签: init.php文件