yii2framework / yiiframe-logistics
A logistics SDK.
Installs: 169
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/yii2framework/yiiframe-logistics
Requires
- guzzlehttp/guzzle: ^6.3|^7.2
Requires (Dev)
- mockery/mockery: ^1.2
- phpunit/phpunit: ~5
This package is auto-updated.
Last update: 2025-10-06 23:24:55 UTC
README
快递物流查询-快递查询接口组件,目前已支持阿里云、聚合数据、快递100、快递鸟四家平台。
⚠️ 更新提示
- 物流查询方法修改为:$order = $logistics->query('805741929402797742', '圆通');
- 快递100 类名由 Kuaidi100修改为Kd100
- 返回物流状态已统一,具体请查看:src/Interfaces/LogisticsStatus.php
- 抽象物流状态为五种结果:
- has_active: 是否已经有动态
- has_ended: 动态是否已经截止
- has_signed: 是否签收
- has_troubled: 是否问题件
- has_returned: 是否退回件
 
- 修改Interfaces/Aliyun LOGISTICS_INFO_URL = 'https://wuliu.market.alicloudapi.com/kdi';
- 修改Providers/Aliyun query方法里 'no' => $no,
介绍
目前已支持四家平台
安装
$ composer require yii2framework/yiiframe-logistics -vvv	
使用
require __DIR__ .'/vendor/autoload.php'; use yiiframe\logistics\Logistics; $config = [ 'provider' => 'aliyun', // aliyun/juhe/kd100 'aliyun' => [ 'app_code' => 'xxxxxxxx', ], 'juhe' => [ 'app_code' => 'xxxxx', ], 'kdniao' => [ 'app_code' => 'xxxxx', 'customer' => 'xxxxx', ], 'kd100' => [ 'app_code' => 'xxxxx', 'customer' => 'xxxxx', ], ]; $logistics = new Logistics($config);
获取物流公司列表
$companies = $logistics->companies();
示例:
[
    "顺丰",
    "申通",
    "中通",
    "圆通"
]
获取物流信息
$order = $logistics->query('805741929402797742', '圆通');
示例:
{
    "code": 200,
    "msg": "OK",
    "company": "圆通",
    "no": "805741929402797742",
    "status": 4,
    "display_status": "已签收",
    "abstract_status": {
        "has_active" : true,
        "has_ended" : true,
        "has_signed" : true,
        "has_troubled" : false,
        "has_returned" : false
    },
    "list": [
        {
            "datetime": "2019-05-07 18:02:27",
            "remark": "山东省淄博市淄川区三部公司取件人:司健(15553333300)已收件",
            "zone": ""
        },
        {
            "datetime": "2019-05-09 12:44:40",
            "remark": "快件已签收签收人:邮件收发章感谢使用圆通速递,期待再次为您服务",
            "zone": ""
        }
    ],
    "original": {
        "resultcode": "200",
        "reason": "成功的返回",
        "result": {
            "company": "圆通",
            "com": "yt",
            "no": "805741929402797742",
            "status": "1",
            "status_detail": null,
            "list": [
                {
                    "datetime": "2019-05-07 18:02:27",
                    "remark": "山东省淄博市淄川区三部公司取件人:司健(15553333300)已收件",
                    "zone": ""
                },
                {
                    "datetime": "2019-05-09 12:44:40",
                    "remark": "快件已签收签收人:邮件收发章感谢使用圆通速递,期待再次为您服务",
                    "zone": ""
                }
            ]
        },
        "error_code": 0
    }
}
你也可以这样获取:
$order['company']; // '圆通' (因为各个平台对公司的名称有所不一致,所以查询结果或许会有些许差别)
$order['list']; // ....
$order['original']; // 获取接口原始返回信息
...
或者这样:
$order->getCode(); // 状态码
$order->getMsg(); // 状态信息
$order->getCompany(); // 物流公司简称
$order->getNo(); // 物流单号
$order->getStatus(); // 当前物流单状态 
// 注:物流状态可能不一定准确
$order->getDisplayStatus(); // 当前物流单状态展示名
$order->getAbstractStatus(); // 当前抽象物流单状态
$order->getCourier(); // 快递员姓名
$order->getCourierPhone(); // 快递员手机号
$order->getList(); // 物流单状态详情
$order->getOriginal(); // 获取接口原始返回信息
参数说明
 string   order(string $no, string $company = null)	
$no- 物流单号
$company- 快递公司名(通过 $companies = $logistics->companies(); 获取)
- aliyun:- $company可选
- juhe:- $company必填
- kd100:- $company可选(建议必填,不填查询结果不一定准确)
- kdniao:- $company可选(建议必填,不填查询结果不一定准确)
在 Laravel 中使用
生成配置文件
php artisan vendor:publish --provider="yii2framework\yiiframe-logistics\ServiceProvider"
然后在 .env 中配置 LOGISTICS_APP_CODE ,同时修改 config/logistics.php 中配置信息:
LOGISTICS_APP_CODE=xxxxxxxxxxxxxxxxx LOGISTICS_CUSTOMER=xxxxxxxxxxxxxxxxx // 快递100 customer
可以用两种方式来获取 yii2framework\yiiframe-logistics\Logistics; 实例:
方法参数注入
. . . public function show(Logistics $logistics, $no, $company) { $order = $logistics->query($no, $company); return $order; // $order->getList(); ..... } . . .
服务名访问
. . . public function show($no, $company) { $response = app('logistics')->query($no, $company); } . . .
参考
感谢
License
MIT