PHP code example of cantonbolo / php-tushare
1. Go to this page and download the library: Download cantonbolo/php-tushare library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
cantonbolo / php-tushare example snippets
// 请求接口
$tushare = Tushare::init($token);
$tushare->exec(string $api_name[, array $params = [], string $fields = '']);
// 捕获错误
if ($tushare->error) {
...
}
// 处理结果
$result = $tushare->result;
...
bash
composer