可以使用file_get_contents
函數的第三個參數來獲取重定向后的頁面內容。
示例代碼如下:
$url = 'https://example.com'; // 重定向前的URL
$context = stream_context_create([
'http' => [
'follow_location' => true, // 啟用重定向
'max_redirects' => 10 // 最大重定向次數
]
]);
$content = file_get_contents($url, false, $context);
echo $content;
在上述示例中,我們創建了一個$context
上下文,并通過stream_context_create
函數將其傳遞給file_get_contents
函數。$context
的http
選項中設置了follow_location
為true
,表示啟用重定向,以及max_redirects
表示最大重定向次數。
然后,我們使用file_get_contents
函數來獲取重定向后的頁面內容,并將其存儲在$content
變量中。最后,我們使用echo
語句來輸出獲取到的內容。
請注意,使用file_get_contents
函數獲取遠程內容需要確保相關配置已經正確設置,并且服務器允許該操作。如果無法獲取重定向后的頁面內容,可以考慮使用其他方法,如cURL
庫。