在http请求中设置X-Cluster-Client-Ip

时间:2015-12-16 16:25:27

标签: php header

我想设置一个X-Cluster-Client-Ip,如果网页的重定向工作正常,我可以跟踪它。我的目标是设置Client-Ip并在重定向后返回url。

我有以下脚本:

function getURL($url){
 $opts = array(
   'http' => array)
    'method' => 'GET',
    //here I do not know...
    'X-Cluster-Client-Ip' => '41.70.128.5'
)
);
$headers = get_headers($url, 1);
if($headers !== false && isset($headers['Location'])){
return $headers['Location'];
}
return false;
}

有没有办法在没有cURL的情况下解决这个问题?

提前问候和感谢, YAB

0 个答案:

没有答案