博客园的markdown编辑器太坑爹了@!!!算了。不用格式了!!!
/********************** curl 系列 ***********************///直接通过curl方式取得数据(包含post、header等)/* * $url: 如果非数组,则为http;如是数组,则为https * $header: 头文件 * $post: post方式提交 array形式 * $cookies: 0默认无cookie,1为设置,2为获取 */public function curl_allinfo($urls, $header = false, $post = false, $cookies = 0) { $url = is_array($urls) ? $urls['0'] : $urls; $ch = curl_init(); curl_setopt($ch, curlopt_url, $url); curl_setopt($ch, curlopt_returntransfer, 1); //带header方式提交 if($header != false){ curl_setopt($ch, curlopt_httpheader, $header); } //post提交方式 if($post != false){ curl_setopt($ch, curlopt_post, 1); curl_setopt($ch, curlopt_postfields, $post); } if($cookies == 1){ curl_setopt($ch, curlopt_cookiejar, cookiefile); }else if($cookies == 2){ curl_setopt($ch, curlopt_cookiefile, cookiefile); } if(is_array($urls)){ curl_setopt($ch, curlopt_ssl_verifypeer, false); curl_setopt($ch, curlopt_ssl_verifyhost, false); } $data = curl_exec($ch); curl_close($ch); return $data;}
oupag bbs:http://www.oupag.com/bbs/thread-7814-1-1.htmlcnblogs:http://www.cnblogs.com/skiy/p/3766330.html
http://www.bkjia.com/phpjc/780025.htmlwww.bkjia.comtruehttp://www.bkjia.com/phpjc/780025.htmltecharticle博客园的markdown编辑器太坑爹了@!!!算了。不用格式了!!! /********************** curl 系列 ***********************///直接通过curl方式取得数据...