#61 | $tableRows = []; |
#62 | |
#63 | foreach ($recentPrices as $i => $priceData) { |
#64 | if ($i >= count($recentPrices) - 1) { |
#65 | $this->assign('ChartJson', json_encode([])); |
#66 | continue; |
#67 | } // 跳过最后一行 |
#68 | |
#69 | $timestamp = $priceData[0] / 1000; |
#70 | $date = date('Y-m-d', $timestamp); |