| 1234567891011121314 |
- <?php
- /**
- * Created by PhpStorm.
- * User: 王刚涛
- * Date: 2020/11/24
- * Time: 19:16
- * 获取某天的某个股票的数据
- */
- require('../init.php');
- $stock_code="000001";
- $start_date=20140101;
- $end_date=date("Ymd",time());
- Finance163::get_history_index_sh($stock_code,$start_date,$end_date);
|