给看下那边有错

WBOY
풀어 주다: 2016-06-13 12:45:07
원래의
1052명이 탐색했습니다.

给看下那里有错,
//防止乱码
header("Content-type:text/html;charset=UTF-8");
$discuz_url = 'http://www.uuxoo.com/ ';//地址 
//$login_url = $discuz_url .'/violat/query/';//地址 
$url="http://www.uuxoo.com/violat/query/";

//$cookie_file = tempnam('./temp','cookie');

$ch = curl_init($url); 
//echo  $login_url;
curl_setopt($ch, CURLOPT_HEADER, 0); 
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); 
$contents = curl_exec($ch); 
curl_close($ch);
//获取表单FORMHASH 
preg_match('//i', $contents, $matches);
if(!empty($matches)) { 
$formhash = $matches[1]; 

} else { 
die('Not found the forumhash.'); 

//?vehicle_reg_no=E1Y121&vehicle_id_no=153313&have_submit=yes&submit=1&vehicle_area=赣&vehicle_type=02

$post_data = array(); 
//车牌号
$post_data['vehicle_reg_no'] = 'E1Y121'; 
//车架号
$post_data['vehicle_id_no'] = '153313'; 
$post_data['have_submit'] = "yes"; 

$post_data['submit'] = '1'; 
//汽车地址
$post_data['vehicle_area'] = '赣'; 
//帖子的hash码,这个非常关键!假如缺少这个hash码,discuz会警告你来路的页面不正确
$post_data['formhash']=$formhash;
//汽车类型
$post_data['vehicle_type'] = '02'; 
$aaa= $formhash;
echo $aaa;
//$urlss="http://www.uuxoo.com/violat/query/?vehicle_reg_no=E1Y121&formhash=$aaa&vehicle_id_no=153313&have_submit=yes&submit=1&vehicle_area=赣&vehicle_type=02";
//echo $urlss;
$chs = curl_init($url);  

//curl_setopt($ch, CURLOPT_REFERER, $url); //伪装REFERER 
curl_setopt($chs, CURLOPT_HEADER, 0);
curl_setopt($chs, CURLOPT_RETURNTRANSFER, 1); 
//curl_setopt($ch, CURLOPT_COOKIEFILE, $cookie_file); 
//curl_setopt($ch, CURLOPT_COOKIEJAR, $cookie_file); 
curl_setopt($chs, CURLOPT_POST, 1); 
curl_setopt($chs, CURLOPT_POSTFIELDS, $post_data); 
echo  curl_exec($chs);  
//echo "$ch"; 
curl_close($chs); 
?>

Curl
관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿