溫馨提示×

php file_get_contents怎么抓取重定向頁面

PHP
小億
129
2024-01-18 22:05:06
欄目: 編程語言

可以使用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ù)。$contexthttp選項(xiàng)中設(shè)置了follow_locationtrue,表示啟用重定向,以及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庫。

0