标签: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;
}    
标签:ssd file function rand res ret set stat body
原文地址:http://www.cnblogs.com/wanghaokun/p/6480011.html