11 lines
185 B
PHP
11 lines
185 B
PHP
<?php
|
|
|
|
function getAllLines(string $file): iterable
|
|
{
|
|
$handle = fopen($file, 'r');
|
|
while (!feof($handle)) {
|
|
yield fgets($handle);
|
|
}
|
|
fclose($handle);
|
|
}
|