cantonbolo / php-tushare
Tushare PHP SDK
1.0.3
2019-03-19 06:46 UTC
Requires
- php: ^7.2
- ext-curl: ^7.2
- ext-json: ^1.6
Requires (Dev)
- phpunit/phpunit: ^8
This package is auto-updated.
Last update: 2025-04-19 20:33:36 UTC
README
Tushare Pro 金融大数据平台 PHP SDK
安装
composer require cantonbolo/php-tushare
使用
// 请求接口 $tushare = Tushare::init($token); $tushare->exec(string $api_name[, array $params = [], string $fields = '']); // 捕获错误 if ($tushare->error) { ... } // 处理结果 $result = $tushare->result; ...