我想设置一个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