采集数据,网页上的数据是开发者通过ajax的post方式显示的,就得用到curl以及它的跨域方法
代码:
$post_data------post传过去的参数
$ch = curl_init();
$url = 'http://www.95598.cn/95598/outageNotice/queryOutageNoticeList;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
//POST数据!
curl_setopt($ch, CURLOPT_POST, 1);
//把post的变量加上
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
$output = curl_exec($ch);
curl_close($ch);
$a = json_decode($output);
if($a->seleList == null){
break;
}
var_dump($a);