複製程式碼 程式碼如下:
$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教程有興趣的朋友有所幫助。