您好,欢迎访问一九零五行业门户网

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

下面小编就为大家分享一篇php通过header发送自定义数据方法,具有很好的参考和学习php的价值,希望对大家有所帮助。对php感兴趣的一起跟随小编过来看看吧
本文将介绍如何通过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通过header发送自定义数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考!!
相关推荐:
php实现可添加水印与生成缩略图处理工具
php实现找出链表中环的入口节点实例详解
php序列化和反序列化原理详解
以上就是php通过header发送自定义数据方法的详细内容。
其它类似信息

推荐信息