Flourish PHP Unframework
This is an archived copy of the forum for reference purposes

fFile Iteration

posted by drren 9 years ago

Hi,

$file = new fFile('abc.txt');
foreach ($file as $line) {
    echo $line;
    // 
}

My file was around 200k and it wouldnt read it to the end.

In the end i had to use php native method.

Any ideas?

Is the only thing you are doing in the loop echoing the line?

posted by wbond 9 years ago