欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

php短域名转换为实际域名函数

程序员文章站 2023-04-07 14:35:55
复制代码 代码如下: $url = "http://sinaurl.cn/hbdsu5"; echo unshorten($url); function unshorten...
复制代码 代码如下:

$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;
}