您好,欢迎来到三六零分类信息网!老站,搜索引擎当天收录,欢迎发信息

php通过header发送自定义数据代码分享

2024/5/1 21:54:09发布45次查看
这次给大家带来php通过header发送自定义数据代码分享,php通过header发送自定义数据的注意事项有哪些,下面就是实战案例,一起来看一下。
本文将介绍如何通过header发送自定义数据。发送请求时,除了可以使用$_get/$_post发送数据,也可以把数据放在header中传输过去。
发送header:
我们定义了三个参数,token、language、region,放入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实现mongodb单例模式操作类步骤详解
为什么有php class soapclient not found问题以及解决方法
以上就是php通过header发送自定义数据代码分享的详细内容。
该用户其它信息

VIP推荐

免费发布信息,免费发布B2B信息网站平台 - 三六零分类信息网 沪ICP备09012988号-2
企业名录 Product