一、使用curl进行get和post请求
//GET public static function wrapCurlGet($url){ /*{{{*/ $ch = curl_init($url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_BINARYTRANSFER, true); $result = curl_exec($ch); curl_close($ch); $result = json_decode($result,true); return $result; /*}}}*/ } //POST public static function wrapCurlPost($url,$feild){ /*{{{*/ $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($feild)); $result = curl_exec($ch); if ($result === FALSE) { throw new Exception("cURL Error: " . curl_error($ch)); } curl_close($ch); $result = json_decode($result,true); return $result; /*}}}*/ }
二、高级使用方法
1,设置超时参数
参数CURLOPT_CONNECTTIMEOUT 通常用来设置curl尝试请求链接的时间,这是一个非常重要的选项,如果你把这段时间设置的太短了,可能会导致curl请求失败。 但是如果你把它设置的时间太长了,可能PHP脚本将死掉。
curl_setopt($curl,CURLOPT_CONNECTTIMEOUT,5);
和这个参数相关的一个选项是 CURLOPT_TIMEOUT,这是用来设置curl允许执行的时间需求。如果您设置这一个很小的值,它可能会导下载的网页上是不完整的,因为他们需要一段时间才能下载。
curl_setopt($curl,CURLOPT_TIMOUT,5);
三、如何在linux下用命令行下使用curl请求目标地址,并将结果打印或保存在一个文件
curl -o tmp.txt -d "_from=xx¶m=value&_checksum=392b0d272251e4600be89ea8c5beab03" http://hostname/index.php?r=api/flow/getchannels
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
0 27 0 27 0 0 576 0 --:--:-- --:--:-- --:--:-- 0
vim tmp.txt
{"code":-1,"msg":"no data"}