首页 > 技术文章 > php查询快递信息

wanghaokun 2017-02-28 17:47 原文

$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;
}    

 

推荐阅读