码迷,mamicode.com
首页 > Web开发 > 详细

curl模拟post和get请求

时间:2017-12-07 17:19:48      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:als   取数据   请求   exe   binary   ini   启用   bsp   post   

function _post($url,$post_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, $post_data);
    $output = curl_exec($ch);
    curl_close($ch);
    //打印获得的数据
    return $output;
}


function _get($url){
    $ch = curl_init($url) ;  
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true) ; // 获取数据返回  
    curl_setopt($ch, CURLOPT_BINARYTRANSFER, true) ; // 在启用 CURLOPT_RETURNTRANSFER 时候将获取数据返回  
    $output = curl_exec($ch) ; 
    curl_close($ch);
    //打印获得的数据
    return $output;
}

curl模拟post和get请求

标签:als   取数据   请求   exe   binary   ini   启用   bsp   post   

原文地址:http://www.cnblogs.com/lauhp/p/7999587.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!