在PHP中可以通过header函数来发送头信息,还可以设置文件的content-type,下面整理了一些常见文件类型对于的content-type值。 部分header头参考:http://www.lai18.com/content/433566.html 代码语言:javascript 复制 //author http://www.lai18.com//date 2015-06-22//定义编码header('Content-Type:text/html;charse...
header('Content-Type: text/plain'); //纯文本格式 header('Content-Type: image/jpeg'); //JPG、JPEG header('Content-Type: application/zip'); // ZIP文件 header('Content-Type: application/pdf'); // PDF文件 header('Content-Type: audio/mpeg'); // 音频文件 header('Content-type: text/css...
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/mp...
header()函数的作用是:发送一个原始 HTTP 标头[Http Header]到客户端。标头 (header) 是服务器以 HTTP 协义传 HTML 资料到浏览器前所送出的字串,在标头与 HTML 文件之间尚需空一行分隔。在 php中送回 HTML 资料前,需先传完所有的标头。 常用header汇总: header('Content-Type: text/html; charset=utf-8'...
如果从准确的角度来说,那PHP文档是最准确的,因为它很简练的列出了实现文本类文件触发下载所需要的三条语句,以PDF为例就是: // We'll be outputting a PDF header('Content-type: application/pdf'); // It will be called downloaded.pdf header('Content-Disposition: attachment; filename="downloaded.pdf"...
('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-...
一、PHP发送Header信息的基本操作流程 在PHP中,可以使用header()函数来发送HTTP头信息。下面是PHP发送Header信息的基本操作流程: 1. 使用header()函数设置HTTP头: 通过header()函数,可以设置多种不同的HTTP头,包括Content-Type、Cache-Control、Expires、Location等等。例如,设置Content-Type头,可以使用以下代码: ...
<?php $filename = '路径+实际文件名'; //文件的类型 header('Content-type: application/pdf'); //下载显示的名字 header('Content-Disposition: attachment; filename="保存时的文件名.pdf"'); readfile("$filename"); exit(); ?> 下面是网上常用的方法 : <?php if (isset($link)) { Header(...
header('Content-Type: text/html; charset=utf-8'); //网页编码 header('Content-Type: text/plain'); //纯文本格式 header('Content-Type: image/jpeg'); //JPG、JPEG header('Content-Type: application/zip'); // ZIP文件 header('Content-Type: application/pdf'); // PDF文件 ...
header("Location: homepage.php"); exit(); ?> 3、设置Content-Type:如果你正在处理文件上传,你可能需要设置正确的Content-Type,如果你正在处理一个PDF文件,你可以使用以下代码: <?php $file = 'path/to/your/file.pdf'; header('Content-type: application/pdf'); ...