php中利用header设置content-type和常见文件类型的content-type

在PHP中可以通过header函数来发送头信息,还可以设置文件的content-type,下面整理了一些常见文件类型对于的content-type值。

部分header头参考:http://www.lai18.com/content/433566.html

//author <a href="http://www.lai18.com" target="_blank">http://www.lai18.com</a>   
//date 2015-06-22  
//定义编码  
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: <a style="color:rgb(51,119,170); text-decoration:none" href="http://www.example.org/" target="_blank">http://www.example.org/');</a>   
//文件延迟转向:  
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';
PHP的cURL库可以用来发送HTTP请求,包括GET请求。在使用cURL发送GET请求时,可以通过设置cURL选项来携带HTTP头部信息,比如`Authorization`和`Content-Type`。 下面是一个使用PHP cURL发送GET请求并携带`Authorization`和`Content-Type`头部的示例代码: ```php <?php // 初始化cURL会话 $curl = curl_init(); // 设置cURL选项,这里是目标URL curl_setopt($curl, CURLOPT_URL, "http://example.com/api/resource"); // 设置HTTP头部信息,需要的Authorization头和Content-Type头 $headers = [ "Authorization: Bearer your_access_token", // 替换为你的实际令牌 "Content-Type: application/json" // 表明发送的数据格式为JSON ]; // 设置cURL的HTTP头部选项 curl_setopt($curl, CURLOPT_HTTPHEADER, $headers); // 设置cURL选项,要求cURL返回传输的内容而不是直接输出 curl_setopt($curl, CURLOPT_RETURNTRANSFER, true); // 执行cURL会话 $response = curl_exec($curl); // 检查是否有错误发生 if (curl_errno($curl)) { // 输出错误信息 echo 'Error:' . curl_error($curl); } else { // 输出响应内容 echo $response; } // 关闭cURL资源,并释放系统资源 curl_close($curl); ?> ``` 在上述代码,我们首先创建了一个cURL会话,并设置了目标URL。接着定义了一个包含所需头部信息的数组,并通过`CURLOPT_HTTPHEADER`选项传递给cURL。我们还设置了`CURLOPT_RETURNTRANSFER`为`true`,这样`curl_exec`函数会返回响应内容,而不是直接输出到浏览器。最后执行cURL会话,并根据需要处理响应或错误。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值