php通过header发送自定义数据方法
程序员文章站
2022-05-26 07:57:07
本文将介绍如何通过header发送自定义数据。发送请求时,除了可以使用$_get/$_post发送数据,也可以把数据放在header中传输过去。
发送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通过header发送自定义数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: python获取mp3文件信息的方法
下一篇: 茯苓是一味中药材,茯苓怎么吃的才会比较好