首页 > 代码库 > post 抓取

post 抓取

function curlBy($url, $data=http://www.mamicode.com/array()){
        $ch = curl_init();
        if(!empty($data)){
            if (is_array($data) && $data) {
                $formdata = http://www.mamicode.com/http_build_query($data);
                curl_setopt($ch, CURLOPT_POST, true);
                curl_setopt($ch, CURLOPT_POSTFIELDS, $formdata);
            }
        }
        curl_setopt($ch, CURLOPT_URL, $url);
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
        curl_setopt($ch, CURLOPT_TIMEOUT,0);
        $result = curl_exec($ch);
        return $result;
    }