php表示当前页面为下载文件的头部定义格式为:
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length:".$fileSize); //文件的大小,单位为字节
header("Content-Disposition: attachment; filename=".$fileName);
php表示当前页面为下载文件的头部定义格式为:
header("Content-type: application/octet-stream");
header("Accept-Ranges: bytes");
header("Accept-Length:".$fileSize); //文件的大小,单位为字节
header("Content-Disposition: attachment; filename=".$fileName);