'13'
);
//设置来源地址,如果不设置,论坛服务器有可能有验证不允许回复
curl_setopt($ch,curlopt_referer,"http://www.example.com/tea/index.php?m=content&c=index&a=lists&catid=10");
//能保存cookie
curl_setopt($ch,curlopt_cookiesession,true);
curl_setopt($ch,curlopt_useragent,"mozilla/4.0 (compatible; msie 6.0; windows nt 5.1; sv1; .net clr 1.1.4322; .net clr 2.0.50727)");
curl_setopt($ch, curlopt_proxy, $proxy[$i]);
curl_setopt($ch, curlopt_post, 1);
curl_setopt($ch, curlopt_header, 0);
curl_setopt($ch, curlopt_url,$url);
//为了支持cookie
curl_setopt($ch, curlopt_postfields, $data);
$result = curl_exec($ch);
if(curl_errno($ch))
{
echo 'curl error: ' . curl_error($ch);
}
}
for($i=0;$i<=11;$i++)
{
echo "begin 第".$i."次投票";
toupiao($i);
echo 'end';
echo "";
}