php curl post

curl post





$ch = curl_init();//初始化curl
curl_setopt($ch,CURLOPT_URL,'http://127.0.0.1/test/curl/result.php');//抓取指定网页
curl_setopt($ch, CURLOPT_HEADER, 0);//设置header
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//要求结果为字符串且输出到屏幕上
curl_setopt($ch, CURLOPT_POST, 1);//post提交方式
curl_setopt($ch, CURLOPT_POSTFIELDS, $data2);
$data = curl_exec($ch);//运行curl
curl_close($ch);


你可能感兴趣的:(php curl post)