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