curl post方式访问网页

2015-01-20 0 501
curl post方式访问网页
$url = http://xxxx.com;
 
$params = array('id'=>11,'aa'=>22,'cc'=>33);
 
$data = http_build_query($params);
 
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
if('' != $data){
  curl_setopt($ch, CURLOPT_POST, 1);
  curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
}
 
curl_setopt($ch, CURLOPT_TIMEOUT, 6);
$result = curl_exec($ch);
var_dump(curl_error($ch));
curl_close($ch);
return $result;

遇见资源网 php curl post方式访问网页 http://www.ox520.com/7234.html

常见问题

相关文章

发表评论
暂无评论
官方客服团队

为您解决烦忧 - 24小时在线 专业服务