php中curl函数可以模拟表单提交?
展开全部
当然可以
你是想要具体的代码?
你是想要具体的代码?
更多追问追答
追问
是啊,发给我
追答
这是我的一个网站中的一小段程序
$content=$title.$title.$html;
$url='http://blog.sohu.com/service/tag/extr.html';
$post_fields='text='.urlencode(iconv('utf-8','gbk',$content)).'&_=';
$ch = curl_init($url);//开启一个crul会话
curl_setopt($ch, CURLOPT_HEADER, 0);//不包含头部
//curl_setopt($ch, CURLOPT_COOKIE, $cookie);//设置cookies
curl_setopt($ch, CURLOPT_POST, 1);//允许接收post数据
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_fields); //设置post数据
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);//输出内容为字符串
$contents = curl_exec($ch);//得到curl结果
curl_close($ch);//关闭curl会话
echo $html.'标签标签标签标签'.iconv('gbk','utf-8',$contents);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询