当前位置:Gxlcms > PHP教程 > php短域名转换为实际域名函数_php技巧

php短域名转换为实际域名函数_php技巧

时间:2021-07-01 10:21:17 帮助过:4人阅读

代码如下:

$url = "http://sinaurl.cn/hbdsU5";
echo unshorten($url);
function unshorten($url) {
$url = trim($url);
$headers = get_headers($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;
}

人气教程排行