task_get_history_index.php 290 B

123456789101112131415
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: 王刚涛
  5. * Date: 2020/12/1
  6. * Time: 19:35
  7. */
  8. require('../init.php');
  9. $indexList=Index::getIndexList();//获取指数代码
  10. foreach ($indexList as $key=>$value){
  11. Finance163::get_history_index_csi300($stock_code,$start_date,$end_date);
  12. }
  13. ?>