php curl設定頭部資訊的方法:先把自訂http頭放入hearders array中;然後用「CURLOPT_HTTPHEADER」進行設定即可。
推薦:《PHP影片教學》
php curl設定自訂的HTTP頭
把自訂http頭放入hearders array, 然後用CURLOPT_HTTPHEADER設定。
$headers = array(); $headers[] = 'X-Apple-Tz: 0'; $headers[] = 'X-Apple-Store-Front: 143444,12'; $headers[] = 'Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8'; $headers[] = 'Accept-Encoding: gzip, deflate'; $headers[] = 'Accept-Language: en-US,en;q=0.5'; $headers[] = 'Cache-Control: no-cache'; $headers[] = 'Content-Type: application/x-www-form-urlencoded; charset=utf-8'; $headers[] = 'User-Agent: Mozilla/5.0 (X11; Ubuntu; Linux i686; rv:28.0) Gecko/20100101 Firefox/28.0'; $headers[] = 'X-MicrosoftAjax: Delta=true'; curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
以上是php curl如何設定頭部訊息的詳細內容。更多資訊請關注PHP中文網其他相關文章!