# express **Repository Path**: qbhy0715/express ## Basic Information - **Project Name**: express - **Description**: 简单的快递查询接口。 - **Primary Language**: PHP - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2017-10-25 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # express 简单的快递查询接口。 ## 安装 ``` $ composer require 96qbhy/express ``` ## 使用 1. 查询快递 ```php $result = Express::query('885744925321174309'); print_r($result); ``` > 支持自动判断快递类型和手动指定快递类型,不传第二个参数代表自动判断快递类型。快递单号用字符串!!! 2. 查询快递类型 ```php $result = Express::queryType('885744925321174309'); print_r($result); ```