当前位置: 移动技术网 > IT编程>开发语言>PHP > php通过header发送自定义数据方法

php通过header发送自定义数据方法

2018年01月25日  | 移动技术网IT编程  | 我要评论

本文将介绍如何通过header发送自定义数据。发送请求时,除了可以使用$_get/$_post发送数据,也可以把数据放在header中传输过去。

发送header:

我们定义了三个参数,tokenlanguageregion,放入header发送过去

<?php
$url = 'http://www.example.com';
$header = array('token:jxrazezavm3hxm3d9pwnyiqqqc1sjbsu','language:zh','region:gz');
$content = array(
    'name' => 'fdipzone'
);
$response = tocurl($url, $header, $content);
$data = json_decode($response, true);
echo 'post data:';
echo '<pre>';
print_r($data['post']);
echo '</pre>';
echo 'header data:';
echo '<pre>';
print_r($data['header']);
echo '</pre>';
/**
 * 发送数据
 * @param string $url   请求的地址
 * @param array $header 自定义的header数据
 * @param array $content post的数据
 * @return string
 */
function tocurl($url, $header, $content){
  $ch = curl_init();
  if(substr($url,0,5)=='https'){
    curl_setopt($ch, curlopt_ssl_verifypeer, false); // 跳过证书检查
    curl_setopt($ch, curlopt_ssl_verifyhost, true); // 从证书中检查ssl加密算法是否存在
  }
  curl_setopt($ch, curlopt_returntransfer, true);
  curl_setopt($ch, curlopt_url, $url);
  curl_setopt($ch, curlopt_httpheader, $header);
  curl_setopt($ch, curlopt_post, true);
  curl_setopt($ch, curlopt_postfields, http_build_query($content));
  $response = curl_exec($ch);
  if($error=curl_error($ch)){
    die($error);
  }
  curl_close($ch);
  return $response;
}
?>

接收header

我们可以在$_server中获取header数据,自定义的数据都是使用http_作为前缀的,所以可以把http_前缀的数据读出。

<?php
$post_data = $_post;
$header = get_all_headers();
$ret = array();
$ret['post'] = $post_data;
$ret['header'] = $header;
header('content-type:application/json;charset=utf8');
echo json_encode($ret, json_unescaped_unicode|json_pretty_print);
/**
 * 获取自定义的header数据
 */
function get_all_headers(){
  // 忽略获取的header数据
  $ignore = array('host','accept','content-length','content-type');
  $headers = array();
  foreach($_server as $key=>$value){
    if(substr($key, 0, 5)==='http_'){
      $key = substr($key, 5);
      $key = str_replace('_', ' ', $key);
      $key = str_replace(' ', '-', $key);
      $key = strtolower($key);
      if(!in_array($key, $ignore)){
        $headers[$key] = $value;
      }
    }
  }
  return $headers;
}
?> 

输出:

post data:
array
(
  [name] => fdipzone
)
header data:
array
(
  [token] => jxrazezavm3hxm3d9pwnyiqqqc1sjbsu
  [language] => zh
  [region] => gz
)

以上这篇php通过header发送自定义数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持移动技术网。

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网