php 讀取超大檔案

無風的雨發表於2017-12-08

PHP開發很多時候都要讀取大檔案,比如csv檔案、text檔案等。這些檔案如果很大,比如10個G。這時,直接一次性把所有的內容讀取到記憶體中計算不太現實。
遇到這種情況,往往覺得PHP太弱,實則不然。利用生成器(關鍵字yield)就能解決。
好了,上程式碼。

<?php
/**
 * Created by PhpStorm.
 * User: Administrator
 * Date: 2017/12/8
 * Time: 22:05
 */

header("content-type:text/html;charset=utf-8");
function readCvs()
{
    # code...
    $handle = fopen("./test.csv", 'rb');

    while (feof($handle)===false) {
        # code...
        yield fgetcsv($handle);
    }

    fclose($handle);
}
$result = readCvs();
foreach ($result as $key => $value) {
    echo "<pre>";
    var_dump( $value);
    echo "</pre>";
//    exit;

}

相關資料:
http://php.net/manual/zh/language.generators.overview.php
https://www.cnblogs.com/tingyugetc/p/6347286.html

相關文章