close
<?php
// 創建一個curl句柄
$ch = curl_init('http://example.com/redirect.php');
// 發送 HTTP 請求
curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
curl_exec($ch);
// 獲得最後一個有效的URL
$effective_url = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);
// ie. "http://example.com/show_location.php?loc=M%C3%BCnchen"
// 解碼URL
$effective_url_decoded = curl_unescape($ch, $effective_url);
// "http://example.com/show_location.php?loc=München"
// 關閉句柄
curl_close($ch);
?>
全站熱搜