<div class="codetitle"><a style="CURSOR: pointer" data="98577" class="copybut" id="copybut98577" onclick="doCopy('code98577')"> 代码如下:@H_301_1@<div class="codebody" id="code98577">
$url = "http://sinaurl.cn/hbdsU5";
echo unshorten($url);
function unshorten($url) {
$url = trim($url);
$headers = getheaders($url);
$location = $url;
$short = false;
foreach($headers as $head) {
if($head=="HTTP/1.1 302 Found") $short = true;
if($short && startwith($head,"Location: ")) {
$location = substr($head,10);
}
}
return $location;
}
function startwith($Haystack,$Needle){
return strpos($Haystack,$Needle) === 0;
}
@H301_1@