开发者

Read CSV from end to beginning in PHP

开发者 https://www.devze.com 2023-03-10 05:08 出处:网络
I am using PHP to expose vehicle GPS data from a CSV file.This data is captured at least every 30 seconds for over 70 vehicles and includes 19 columns of data.This produces several thousand rows of da

I am using PHP to expose vehicle GPS data from a CSV file. This data is captured at least every 30 seconds for over 70 vehicles and includes 19 columns of data. This produces several thousand rows of data and file sizes around 614kb. New data is appended to end of the file. I need to pull out the last row of data for each vehicle, which should represent the most the recent status. I am able to pull out one row for each unit, however since the CSV file is in chronological order I am pulling out the oldest data in the file instead of the newest. Is it possible to read the CSV from the end to the beginning? I have seen some solutions, however they typically involve loading the entire file into memory and then reversing it, this sounds very inefficient. Do I have any other options? Thank you for any advice you can offer.

EDIT: I am using this data to map real-time locations on-the-fly. The data is only provided to 开发者_JAVA百科me in CSV format, so I think importing into a DB is out of the question.


With fseek you can set the pointer to the end of the file and offset it negative to read a file backwards.


If you must use csv files instead of a database, then perhaps you could read the file line-by-line. This will prevent more than the last line being stored in memory (thanks to the garbage collector).

$handle = @fopen("/path/to/yourfile.csv", "r");
if ($handle) {
    while (($line = fgets($handle)) !== false) {
        // old values of $last are garbage collected after re-assignment
        $last = $line;
        // you can perform optional computations on past data here if desired
    }
    if (!feof($handle)) {
        echo "Error: unexpected fgets() fail\n";
    }
    fclose($handle);

    // $last will now contain the last line of the file.
    // You may now do whatever with it
}

edit: I did not see the fseek() post. If all you need is the last line, then that is the way to go.

0

精彩评论

暂无评论...
验证码 换一张
取 消