0

我有一个 CSV 文件,其中包含来自另一个来源的大约 1000 个条目。不幸的是,它的生成方式将最近的交易放在首位。我想将数据附加到 mysql 但它的顺序错误。我该如何解决?我能想到的唯一方法是将其写入临时表,按日期 ASC 查询并插入回正确的表中。有没有更好的办法?

   $location = $_SERVER['DOCUMENT_ROOT'] ."/assets/csv/";
    $year = trim(date('Y', strtotime($start)));
    $month = trim(date('m', strtotime($start))-1);
    $day = trim(date('d', strtotime($start)));

    $file = "http://ichart.yahoo.com/table.csv?s=". $symbol ."&a=". $month ."&b=". $day ."&c=". $year;
    $row = 1;
    if (($handle = fopen($file, "r")) !== FALSE)
    {
        $fp = fopen($location . $symbol.'.csv', 'w');
        while (($data = fgetcsv($handle, 1000, ",")) !== FALSE)
        {
            $num = count($data);
            if($row == 1){array_unshift($data,"Symbol"); }
            else  { array_unshift($data, $symbol); }
            fputcsv($fp, $data);
            $row++;
        }
        fclose($fp);
        fclose($handle);

这就是我获取 CSV 文件的方式

4

0 回答 0