短域名 php短域名转换为实际域名函数
程序员文章站
2022-05-11 19:06:42
...
复制代码 代码如下:
$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教程有兴趣的朋友有所帮助。
下一篇: PHP常用内置函数,php内置