當HTTP狀態碼是302時,如何使用cURL獲取目標URL?如何使用cURL獲取目標網址?
<?PHP
$url = "http://www.ecs.soton.ac.uk/news/";
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,$url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$html = curl_exec($ch);
$status_code = curl_getinfo($ch,CURLINFO_HTTP_CODE);
if($status_code=302 or $status_code=301){
$url = "";
// I want to to get the destination url
}
curl_close($ch);
?>
對其他未解決的問題有什麼好運? – GZipp 2009-09-18 03:34:42
你應該接受正確的答案(-1) – John 2016-10-04 03:00:51