CURLOPT_postfields 和 CURLOPT_httpheader
一,CURLOPT_HTTPHEADER :设置一个header中传输内容的数组。
curl_setopt($ch, CURLOPT_HTTPHEADER, array("Range: Bytes=0-50\nOtherheader: stuff\n"));
curl_setopt($ch, CURLOPT_HTTPHEADER,array("Host: act.*.qq.com"));
相当于:
172.23.129.* act.*.qq.com
二,CURLOPT_POSTFIELDS : 传递一个作为HTTP “POST”操作的所有数据的字符串。
curl_setopt($ch, CURLOPT_POSTFIELDS, ‘Body=gfdfgdfgasdfgdfgdfgdfg& followup=672709&RootID=127437&star=58&TotalUseTable=Dv_bbs3& amp;UserName=→→敢死队→&signflag=1&total=65535‘);
在HTTP中的“POST”操作。如果要传送一个文件,需要一个@开头的文件名
所以,这二个参数做为 curl 调用方法是应该并存的。
参考:
http://blog.csdn.net/liuxinmingcode/article/details/8043150
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-10-10 06:41:26