浏览器如何弹出下载框

php的header函数之设置content-type

    //定义编码
    header( ‘Content-Type:text/html;charset=utf-8 ‘);  

    //Atom
    header(‘Content-type: application/atom+xml‘);  

    //CSS
    header(‘Content-type: text/css‘);  

    //Javascript
    header(‘Content-type: text/javascript‘);  

    //JPEG Image
    header(‘Content-type: image/jpeg‘);  

    //JSON
    header(‘Content-type: application/json‘);  

    //PDF
    header(‘Content-type: application/pdf‘);  

    //RSS
    header(‘Content-Type: application/rss+xml; charset=ISO-8859-1‘);  

    //Text (Plain)
    header(‘Content-type: text/plain‘);  

    //XML
    header(‘Content-type: text/xml‘);  

    // ok
    header(‘HTTP/1.1 200 OK‘);  

    //设置一个404头:
    header(‘HTTP/1.1 404 Not Found‘);  

    //设置地址被永久的重定向
    header(‘HTTP/1.1 301 Moved Permanently‘);  

    //转到一个新地址
    header(‘Location: http://www.example.org/‘);  

    //文件延迟转向:
    header(‘Refresh: 10; url=http://www.example.org/‘);
    print ‘You will be redirected in 10 seconds‘;  

    //当然,也可以使用html语法实现
    // <meta http-equiv="refresh" content="10;http://www.example.org/ />  

    // override X-Powered-By: PHP:
    header(‘X-Powered-By: PHP/4.4.0‘);
    header(‘X-Powered-By: Brain/0.6b‘);  

    //文档语言
    header(‘Content-language: en‘);  

    //告诉浏览器最后一次修改时间
    $time = time() - 60; // or filemtime($fn), etc
    header(‘Last-Modified: ‘.gmdate(‘D, d M Y H:i:s‘, $time).‘ GMT‘);  

    //告诉浏览器文档内容没有发生改变
    header(‘HTTP/1.1 304 Not Modified‘);  

    //设置内容长度
    header(‘Content-Length: 1234‘);  

    //设置为一个下载类型
    header(‘Content-Type: application/octet-stream‘);
    header(‘Content-Disposition: attachment; filename="example.zip"‘);
    header(‘Content-Transfer-Encoding: binary‘);
    // load the file to send:
    readfile(‘example.zip‘);  

    // 对当前文档禁用缓存
    header(‘Cache-Control: no-cache, no-store, max-age=0, must-revalidate‘);
    header(‘Expires: Mon, 26 Jul 1997 05:00:00 GMT‘); // Date in the past
    header(‘Pragma: no-cache‘);  

    //设置内容类型:
    header(‘Content-Type: text/html; charset=iso-8859-1‘);
    header(‘Content-Type: text/html; charset=utf-8‘);
    header(‘Content-Type: text/plain‘); //纯文本格式
    header(‘Content-Type: image/jpeg‘); //JPG***
    header(‘Content-Type: application/zip‘); // ZIP文件
    header(‘Content-Type: application/pdf‘); // PDF文件
    header(‘Content-Type: audio/mpeg‘); // 音频文件
    header(‘Content-Type: application/x-shockw**e-flash‘); //Flash动画  

    //显示登陆对话框
    header(‘HTTP/1.1 401 Unauthorized‘);
    header(‘WWW-Authenticate: Basic realm="Top Secret"‘);
    print ‘Text that will be displayed if the user hits cancel or ‘;
    print ‘enters wrong login data‘;  

下载xlsx文件

    $filename = rtrim($_SERVER[‘DOCUMENT_ROOT‘],‘/‘).‘/app/files/payment_status.csv‘;
    header(‘Content-Disposition: attachment; filename=payment_status.xlsx‘);
    header(‘Content-Type: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet‘);
    header(‘Content-Length: ‘ . filesize($filename));
    header(‘Content-Transfer-Encoding: binary‘);
    header(‘Cache-Control: must-revalidate‘);
    header(‘Pragma: public‘);
    readfile($filename);  

https://stackoverflow.com/questions/17770517/php-content-disposition-attachment-content-type

时间: 2024-10-25 10:58:30

浏览器如何弹出下载框的相关文章

【转】php让图片弹出下载框的方法

在做图片下载站时,常常需要给用户下载图片,但图片浏览器是直接可以打开的.怎么办呢,有没有什么方法可以让图片类型的文件弹出下载框下载呢, phperz.com 当然是有的,php的header函数就可以提供这种方法 php程序员之家 以下代码你可以copy下来测式一下 www.phperz.com 以下为引用的内容:<?php$filename = "123.jpg";//图片地址,可以绝对地址也可以相对地址header("Content-Type: applicatio

Java POI 导出EXCEL经典实现 Java导出Excel弹出下载框

在web开发中,有一个经典的功能,就是数据的导入导出.特别是数据的导出,在生产管理或者财务系统中用的非常普遍,因为这些系统经常要做一些报表打印的工作.而数据导出的格式一般是EXCEL或者PDF,我这里就用两篇文章分别给大家介绍下.(注意,我们这里说的数据导出可不是数据库中的数据导出!么误会啦^_^) 呵呵,首先我们来导出EXCEL格式的文件吧.现在主流的操作Excel文件的开源工具有很多,用得比较多的就是Apache的POI及JExcelAPI.这里我们用Apache POI!我们先去Apach

easyui导出excel无法弹出下载框的解决办法

之前用ajax做的,代码如下(ActionUrl为一般处理程序ashx的路径): $.ajax({ url: ActionUrl + '?action=export&ID=' + $('#fm_ID').val(), dataType: 'json', success: function (jsonstr) { //top.art.dialog.tips('导出成功!'); } }); 没办法弹出下载框. 直接浏览器地址栏输入相关页面地址并打开可以弹出下载框下载,考虑可能是iframe的缘故.

JavaWeb项目导出Excel文件并弹出下载框

引言 在Java Web开发中经常涉及到报表,最近做的项目中需要实现将数据库中的数据显示为表格,并且实现导出为Excel文件的功能. 相关jar包 使用POI可以很好的解决Excel的导入和导出的问题,POI下载地址: poi-3.6-20091214.jar 关键代码 首先导入上述jar包. 在生成excel时一般数据源形式为一个List,下面把生成Excel格式的代码贴出来: /** * 以下为生成Excel操作 */ // 1.创建一个workbook,对应一个Excel文件 HSSFWo

springmvc导出excel并弹出下载框

加入对应的jar包,包括springmvc,poi的, spring jar包在此不列举出来,主要是poi包,如下图所示 下载地址:http://download.csdn.net/download/huawei2010_2011_2012/5034041,或者搜poi3.9 实体类: public class Project { private Integer id; private String name; private String technology;//所用技术 private S

问题:解决上传文件IE浏览器弹出下载框bug?

控制器方法的返回值必须以String返回,再由js处理转换成json对象 $.ajaxFileUpload({ url: "/project/proj_conver_upload", // 需要链接到服务器地址 secureuri: false, fileElementId: "fileBtn", // 文件选择框的id属性 data: {}, dataType: 'json', // 服务器返回的格式,可以是json complete: function(resp

【第十七篇】easyui-datagrid 导出Excel (在客户端能弹出下载框)

//导出Excel function exportExcel(obj) { var SaleOrderNo = $("#SaleOrderNo").val().trim(); var FoctoryNo = $("#FoctoryNo").val().trim(); var StyleNo = $("#StyleNo").val().trim(); var href = "/Admin/Sale/ExportPressingExcel?

POI文件导出至EXCEL,并弹出下载框

相关参考帖子 : [1]http://www.tuicool.com/articles/MnqeUr [2]http://www.oschina.net/question/253469_51638?fromerr=KAk0NKvi [3]http://blog.csdn.net/evangel_z/article/details/7332535 报错参考: Resource interpreted as Document but transferred with MIME type applic

IE 返回值JSON会导致IE弹出下载框问题

params: {     accept: 'text/plain; charset=utf-8' }, 向服务器传值的时候指定这么一个返回,也就是说accept的时候以 text/plain; charset=utf-8 格式来接收 感谢:http://segmentfault.com/q/1010000000319324