xiabeifeng/express-query

Make it easy to query express information

1.0.0 2016-04-10 09:26 UTC

This package is not auto-updated.

Last update: 2024-03-27 22:16:22 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;
}