码迷,mamicode.com
首页 > Web开发 > 详细

php查询快递信息

时间:2017-02-28 19:05:31      阅读:290      评论:0      收藏:0      [点我收藏+]

标签:ssd   file   function   rand   res   ret   set   stat   body   

$code 		= ‘shunfeng‘;
$invoice 	= ‘952255884068‘;
$test 		= getExpressDelivery($code,$invoice);

function getExpressDelivery($code,$invoice){
    $result = array(‘status‘=>0,‘info‘=>‘未知错误‘);
    $url = "http://m.kuaidi100.com/query?type={$code}&postid={$invoice}&id=1&valicode=&temp=".rand(1,710);
    $body = file_get_contents($url); //FIXME
    $body = json_decode($body,true);
    $result[‘status‘] = $body[‘status‘] == 200 ? 1 : 0;
    $result[‘info‘] = $body[‘message‘];
    isset($body[‘data‘]) && ($result[‘state‘]=$body[‘state‘]) && ($result[‘data‘] = $body[‘data‘]) ;
    return $result;
}    

 

php查询快递信息

标签:ssd   file   function   rand   res   ret   set   stat   body   

原文地址:http://www.cnblogs.com/wanghaokun/p/6480011.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!