现在的位置: 我的问答 >php文件下载头部(header)定义格式

php文件下载头部(header)定义格式

2015-10-14 02:15 ⁄ 被浏览 3791

php表示当前页面为下载文件的头部定义格式为:


header("Content-type: application/octet-stream");

header("Accept-Ranges: bytes");

header("Accept-Length:".$fileSize); //文件的大小,单位为字节

header("Content-Disposition: attachment; filename=".$fileName);