php 强制下载文件功能实例
内容摘要
这篇文章主要为大家详细介绍了php 强制下载文件功能实例,具有一定的参考价值,可以用来参考一下。
对php强制下载文件的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
*
对php强制下载文件的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
*
文章正文
这篇文章主要为大家详细介绍了php 强制下载文件功能实例,具有一定的参考价值,可以用来参考一下。
对php强制下载文件的代码对此感兴趣的朋友,看看idc笔记做的技术笔记!
/**
* 强制下载文件的代码
*
* @param
* @arrange 五一二笔记网: 512PiC.com
**/
header("Content-type: application/octet-stream");
// displays progress bar when downloading (credits to Felix ;-))
header("Content-Length: " . filesize('myImage.jpg'));
// file name of download file
header('Content-Disposition: attachment; filename="myImage.jpg"');
// reads the file on the server
readfile('myImage.jpg');
/*** 来自php教程(www.idcnote.com) ***/
注:关于php 强制下载文件功能实例的内容就先介绍到这里,更多相关文章的可以留意
代码注释