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;
}
上一篇: PHP显示今天、今月、上月、今年的起点/终点时间戳的代码
下一篇: PHP学习笔记之一