> 백엔드 개발 > PHP 튜토리얼 > PHP 익스프레스 쿼리 인터페이스

PHP 익스프레스 쿼리 인터페이스

WBOY
풀어 주다: 2016-07-29 09:03:22
원래의
1731명이 탐색했습니다.

PHP 빠른 쿼리 인터페이스

function kuaidi100_scan($getcom,$invoice_sn) {
    
	switch ($getcom) {
        case "EMS":
            $postcom = 'ems';
            break;
        case "中国邮政":
            $postcom = 'ems';
            break;
        case "申通快递":
            $postcom = 'shentong';
            break;
        case "圆通速递":
            $postcom = 'yuantong';
            break;
        case "顺丰速运":
            $postcom = 'shunfeng';
            break;
        case "天天快递":
            $postcom = 'tiantian';
            break;
        case "韵达快递":
            $postcom = 'yunda';
            break;
        case "中通速递":
            $postcom = 'zhongtong';
            break;
        case "龙邦物流":
            $postcom = 'longbanwuliu';
            break;
        case "宅急送":
            $postcom = 'zhaijisong';
            break;
        case "全一快递":
            $postcom = 'quanyikuaidi';
            break;
        case "汇通速递":
            $postcom = 'huitongkuaidi';
            break;
        case "民航快递":
            $postcom = 'minghangkuaidi';
            break;
        case "亚风速递":
            $postcom = 'yafengsudi';
            break;
        case "快捷速递":
            $postcom = 'kuaijiesudi';
            break;
        case "华宇物流":
            $postcom = 'tiandihuayu';
            break;
        case "中铁快运":
            $postcom = 'zhongtiewuliu';
            break;
        case "FedEx":
            $postcom = 'fedex';
            break;
        case "UPS":
            $postcom = 'ups';
            break;
        case "DHL":
            $postcom = 'dhl';
            break;
        default:
            $postcom = '';
    }
    if (empty($postcom)) {
        return false;
    }
    $curr_time = time();
    $url = 'http://m.kuaidi100.com/query?type='.$postcom.'&id=1&postid=' .$invoice_sn. '&temp='.$curr_time;
    $res = file_get_contents($url);
    $res = json_decode($res,true);
    if ($res['status'] == 200) {
        return $res['data'];
    }
    return false;
}


kuaidi100_scan("中通速递","375590702050");
로그인 후 복사

위 내용은 관련 내용을 포함하여 PHP Express 쿼리 인터페이스를 소개한 내용입니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.

관련 라벨:
원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿