当前位置:首页 > PHP教程 > php应用 > 列表

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

发布:smiling 来源: PHP粉丝网  添加日期:2021-08-30 19:55:50 浏览: 评论:0 

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

发送header:

我们定义了三个参数,token、language、region,放入header发送过去

  1. <?php 
  2. $url = 'http://www.phpfensi.com'
  3. $header = array('token:JxRaZezavm3HXM3d9pWnYiqqQC1SJbsU','language:zh','region:GZ'); 
  4. $content = array
  5.     'name' => 'fdipzone' 
  6. ); 
  7. $response = tocurl($url$header$content); 
  8. $data = json_decode($response, true); 
  9. echo 'POST data:'
  10. echo '<pre>'
  11. print_r($data['post']); 
  12. echo '</pre>'
  13. echo 'Header data:'
  14. echo '<pre>'
  15. print_r($data['header']); 
  16. echo '</pre>'
  17. /** 
  18.  * 发送数据 
  19.  * @param String $url   请求的地址 
  20.  * @param Array $header 自定义的header数据 
  21.  * @param Array $content POST的数据 
  22.  * @return String 
  23.  */ 
  24. function tocurl($url$header$content){ 
  25.   $ch = curl_init(); 
  26.   if(substr($url,0,5)=='https'){ 
  27.     curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); // 跳过证书检查 
  28.     curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, true); // 从证书中检查SSL加密算法是否存在 
  29.   } 
  30.   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); 
  31.   curl_setopt($ch, CURLOPT_URL, $url); 
  32.   curl_setopt($ch, CURLOPT_HTTPHEADER, $header); 
  33.   curl_setopt($ch, CURLOPT_POST, true); 
  34.   curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($content)); 
  35.   $response = curl_exec($ch); 
  36.   if($error=curl_error($ch)){ 
  37.     die($error); 
  38.   } 
  39.   curl_close($ch); 
  40.   return $response
  41. ?> 

接收header

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

  1. <?php 
  2. $post_data = $_POST
  3. $header = get_all_headers(); 
  4. $ret = array(); 
  5. $ret['post'] = $post_data
  6. $ret['header'] = $header
  7. header('content-type:application/json;charset=utf8'); 
  8. echo json_encode($ret, JSON_UNESCAPED_UNICODE|JSON_PRETTY_PRINT); 
  9. /** 
  10.  * 获取自定义的header数据 
  11.  */ 
  12. function get_all_headers(){ 
  13.   // 忽略获取的header数据 
  14.   $ignore = array('host','accept','content-length','content-type'); 
  15.   $headers = array(); 
  16.   foreach($_SERVER as $key=>$value){ 
  17.     if(substr($key, 0, 5)==='HTTP_'){ 
  18.       $key = substr($key, 5); 
  19.       $key = str_replace('_'' '$key); 
  20.       $key = str_replace(' ''-'$key); 
  21.       $key = strtolower($key); 
  22.       if(!in_array($key$ignore)){ 
  23.         $headers[$key] = $value
  24.       } 
  25.     } 
  26.   } 
  27.   return $headers
  28. ?> 

输出:

POST data:

  1. Array 
  2.   [name] => fdipzone 
  3. Header data: 
  4. Array 
  5.   [token] => JxRaZezavm3HXM3d9pWnYiqqQC1SJbsU 
  6.   [language] => zh 
  7.   [region] => GZ 
  8. )

Tags: header php发送自定义数据

分享到: