• ADADADADAD

    php怎么编写https接口[ 网络知识 ]

    网络知识 时间:2024-11-19 12:05:07 热度:2℃

    作者:文/会员上传 下载docx

    简介:

    在php中使用curl库编写https接口,具体方法如下:function fetch_page($site,$url,$params=false){$ch = curl_init();$cookieFile = $site . '_cookiejar.txt';curl_setopt($ch

    以下为本文的正文内容,请查阅,本站为公益性网站,复制本文以及下载DOC文档全部免费。

    在php中使用curl库编写https接口,具体方法如下:

    function fetch_page($site,$url,$params=false)

    {

    $ch = curl_init();

    $cookieFile = $site . '_cookiejar.txt';

    curl_setopt($ch, CURLOPT_COOKIEJAR, $cookieFile);

    curl_setopt($ch, CURLOPT_COOKIEFILE,$cookieFile);

    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);

    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);

    curl_setopt($ch, CURLOPT_HTTPGET, true);

    curl_setopt($ch, CURLOPT_TIMEOUT, 4);

    if($params)

    curl_setopt($ch, CURLOPT_POSTFIELDS, $params);

    curl_setopt($ch,CURLOPT_USERAGENT,'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.3) Gecko/2008092417 Firefox/3.0.3');

    curl_setopt($ch, CURLOPT_URL,$url);

    $result = curl_exec($ch);

    return $result;

    }

    php怎么编写https接口.docx

    将本文的Word文档下载到电脑

    推荐度:

    下载
    热门标签: httpsphp
    ADADAD
    热门栏目