用生成器读取大文件
生成器的一个常见用例是从磁盘读取文件并迭代其内容。下面是一个允许你迭代 CSV 文件的类。此脚本的内存使用量非常可预测,并且不会根据 CSV 文件的大小而波动。
<?php
class CsvReader
{
protected $file;
public function __construct($filePath) {
$this->file = fopen($filePath, 'r');
}
public function rows()
{
while (!feof($this->file)) {
$row = fgetcsv($this->file, 4096);
yield $row;
}
return;
}
}
$csv = new CsvReader('/path/to/huge/csv/file.csv');
foreach ($csv->rows() as $row) {
// Do something with the CSV row.
}