Read a huge file line by line in PHP

$fh = fopen('orders.csv', 'r');

while (($line = fgets($fh)) !== false) {
    process($line);
}

fclose($fh);