首頁 >後端開發 >php教程 >如何修改 PHP `get_web_page` 函數以使用 cURL 處理 HTTPS 請求?

如何修改 PHP `get_web_page` 函數以使用 cURL 處理 HTTPS 請求?

Susan Sarandon
Susan Sarandon原創
2024-12-16 18:53:10177瀏覽

How Can I Modify My PHP `get_web_page` Function to Handle HTTPS Requests Using cURL?

PHP CURL 和 HTTPS

本文旨在解決在 PHP 中使用 CURL 實現 HTTPS 請求的 get_web_page 函數的問題。

提供的函數可以完美地處理 HTTP 請求。然而,在處理HTTPS連接時,卻遇到了困難。為了解決這個問題,我們將對該函數進行必要的修改。

透過將以下行新增至選項陣列:

curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false)

我們指示 CURL 停用 SSL 憑證驗證。這是一個快速的解決方案,但它也會增加您遭受中間人攻擊的脆弱性。

或者,您可以將此修改直接包含到函數中:

/**
 * Get a web file (HTML, XHTML, XML, image, etc.) from a URL.  Return an
 * array containing the HTTP server response header fields and content.
 */
function get_web_page( $url )
{
    $options = array(
        CURLOPT_RETURNTRANSFER => true,     // return web page
        CURLOPT_HEADER         => false,    // don't return headers
        CURLOPT_FOLLOWLOCATION => true,     // follow redirects
        CURLOPT_ENCODING       => "",       // handle all encodings
        CURLOPT_USERAGENT      => "spider", // who am i
        CURLOPT_AUTOREFERER    => true,     // set referer on redirect
        CURLOPT_CONNECTTIMEOUT => 120,      // timeout on connect
        CURLOPT_TIMEOUT        => 120,      // timeout on response
        CURLOPT_MAXREDIRS      => 10,       // stop after 10 redirects
        CURLOPT_SSL_VERIFYPEER => false     // Disabled SSL Cert checks
    );

    $ch      = curl_init( $url );
    curl_setopt_array( $ch, $options );
    $content = curl_exec( $ch );
    $err     = curl_errno( $ch );
    $errmsg  = curl_error( $ch );
    $header  = curl_getinfo( $ch );
    curl_close( $ch );

    $header['errno']   = $err;
    $header['errmsg']  = $errmsg;
    $header['content'] = $content;
    return $header;
}

使用透過此修改,get_web_page 函數將有效處理 HTTP 和 HTTPS 要求。

以上是如何修改 PHP `get_web_page` 函數以使用 cURL 處理 HTTPS 請求?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn