繁体   English   中英

如何使用cCurl发送自定义用户代理和推荐人?

[英]How to send Customized User-Agent and Referrer with cCurl?

我想在使用ccurl时收到移动版页面。 有没有办法在进行ccurl调用时发送自定义用户代理和自定义引用? 如果答案是肯定的?

function get_data($url) {
  $ch = curl_init();
  $timeout = 5;
  curl_setopt($ch, CURLOPT_URL, $url);
  curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  $data = curl_exec($ch);
  curl_close($ch);
  return $data;
}

$page="http://www.somesite.com";
$input = get_data($page);

阅读文档: http//php.net/manual/en/function.curl-setopt.php

curl_setopt($ch, CURLOPT_REFERER, 'SomeReferrer');
curl_setopt($ch, CURLOPT_USERAGENT, 'SomeUA'); 

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM