<?php require_once 'curl.func.php'; $appkey = 'your_appkey_here';//你的appkey $url = "https://api.jisuapi.com/illegal/query?appkey=$appkey"; $carorg = '';//交管局代号 $lsprefix = '京';//车牌前缀 utf8 $lsnum = '';//车牌 $lstype = '02';//车辆类型 $engineno = '';//发动机号 $frameno = '';//车架号 $post = array('carorg'=>$carorg, 'lsprefix'=>$lsprefix, 'lsnum'=>$lsnum, 'engineno'=>$engineno, 'frameno'=>$frameno, 'lstype'=>$lstype ); $result = curlOpen($url, array('post'=>$post)); $jsonarr = json_decode($result, true); //exit(var_dump($jsonarr)); if($jsonarr['status'] != 0) { echo $jsonarr['msg']; exit(); } $result = $jsonarr['result']; if(!empty($result['list'])) { foreach($result['list'] as $val) { echo $val['time'].' '.$val['address'].' '.$val['content'].' '.$val['legalnum'].' '.$val['price'].' '.$val['score'].'
'; } } else { echo '恭喜您,没有违章!'; }
© 2015-2024 杭州极速互联科技有限公司 版权所有 浙ICP备17047587号-4 浙公网安备33010502005096 增值电信业务经营许可证:浙B2-20190875