var-lab/file-reader

1.0.0 2025-04-10 11:05 UTC

This package is not auto-updated.

Last update: 2025-05-09 09:44:24 UTC


README

Read text-based files line-by-line.

Installation

composer require var-lab/file-reader

Usage

<?php

$fileReader = new FileReader();

$fileReader->readLineByLine($testFile, function (string $content, int $lineNumber) {
    // do something with the current line...
});