首页 >后端开发 >php教程 >如何使用 PHP cURL 安全地从 HTTPS URL 检索数据?

如何使用 PHP cURL 安全地从 HTTPS URL 检索数据?

Susan Sarandon
Susan Sarandon原创
2024-12-14 11:22:10248浏览

How Can I Use PHP cURL to Securely Retrieve Data from HTTPS URLs?

PHP CURL 和 HTTPS

本文解决了使用 PHP CURL 从 HTTPS URL 检索 Web 文件的问题。

困境

提供的函数 get_web_page 在尝试从 HTTPS 获取内容时遇到问题URL。

修复

要启用 HTTPS 支持,我们可以实施以下两种解决方案之一:

解决方案 1:手动选项

将此行添加到你的选项数组:

curl_setopt($ch,CURLOPT_SSL_VERIFYPEER, false)

注意:这个快速修复会禁用证书验证,使您的系统容易受到中间人攻击。

解决方案 2:函数更新

将相同的代码片段合并到更新的 get_web_page 函数中:

/**
 * 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;
}

以上是如何使用 PHP cURL 安全地从 HTTPS URL 检索数据?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn