xiabeifeng/express-query

Make it easy to query express information

Installs: 33

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/xiabeifeng/express-query

1.0.0 2016-04-10 09:26 UTC

This package is not auto-updated.

Last update: 2025-12-18 05:57:13 UTC


README

This is a php package to make it easy to query express information.

Homepage : https://packagist.org/packages/xiabeifeng/express-query

Quick Start and Examples

require 'vendor/autoload.php';
try {
    $obj = new Xiabeifeng\ExpressQuery\KuaiDi100('yunda', '1201869669591');
    $result = $obj->query();
    var_dump($result);
} catch (\Exception $e) {
    echo $e->getMessage() . PHP_EOL;
    echo $e->getCode() . PHP_EOL;
}