php curl设置头的方法:首先设置自定义请求头;然后设置“curl_setopt($ch, curlinfo_header_out, );”;最后执行“curl_getinfo($ch, curlinfo_header_out”即可。
推荐:《php视频教程》
php curl设置自定义请求头和打印请求头信息
$header = [ 'client:h5', 'token:test',];curlrequest($url, $params, true, 10, $header);
php5.1.3版以上支持用curl_getinfo函数来获取请求头
具体需要先设置 curl_setopt($ch, curlinfo_header_out, true);
然后在请求发生后用 curl_getinfo($ch, curlinfo_header_out);
function curlrequest($url, $params = array(), $is_post = false, $time_out = 10, $header=array()) { $str_cookie = isset($ext_params['str_cookie']) ? $ext_params['str_cookie'] : '';$ch = curl_init();//初始化curl curl_setopt($ch, curlopt_url, $url);//抓取指定网页 curl_setopt($ch, curlopt_header, 0);//设置是否返回response header curl_setopt($ch, curlopt_returntransfer, 1);//要求结果为字符串且输出到屏幕上 //当需要通过curl_getinfo来获取发出请求的header信息时,该选项需要设置为true curl_setopt($ch, curlinfo_header_out, true); curl_setopt($ch, curlopt_timeout, $time_out); curl_setopt($ch, curlopt_connecttimeout, $time_out); curl_setopt($ch, curlopt_post, $is_post); if ($is_post) { curl_setopt($ch, curlopt_postfields, $params); } if ($str_cookie) { curl_setopt($ch, curlopt_cookie, $str_cookie); } if ($header) { curl_setopt($ch, curlopt_httpheader, $header); } $response = curl_exec($ch); //打印请求的header信息 $request_header = curl_getinfo( $ch, curlinfo_header_out); print_r($request_header); curl_close($ch); return $response; }
以上就是php curl如何设置自定义请求头的详细内容。