当前位置:Gxlcms > PHP教程 > PHPcurlgetpost提交函数

PHPcurlgetpost提交函数

时间:2021-07-01 10:21:17 帮助过:17人阅读

get 提交

function getRequest ($url) {
    //初始化
    $ch = curl_init();
    //设置选项,包括URL
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_HEADER, 0);
    //执行并获取HTML文档内容
    $output = curl_exec($ch);
    //释放curl句柄
    curl_close($ch);

    return $output;
}

post 提交

function postRequest($url, $data) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    // post数据
    curl_setopt($ch, CURLOPT_POST, 1);
    // post的变量
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    $output = curl_exec($ch);
    curl_close($ch);
    return $output;
}

以上就介绍了PHP curl get post 提交函数,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。

人气教程排行