Skip to content
Snippets Groups Projects

Ptps controller 9

Merged Адлан Шамавов requested to merge PTPS_Controller_9 into main
6 unresolved threads
Compare and Show latest version
1 file
+ 1
0
Compare changes
  • Side-by-side
  • Inline
+ 22
0
@@ -156,4 +156,26 @@ class Functions
}
throw new RuntimeException("File not found: $filePath");
}
/**
* Переделай своё решение 8 задачи:
* замени вывод всего текста из файла разом на
* построчный вывод используя yield
* @param string $filePath путь до файла
* @return iterable
*/
public function readFileLineByLine(string $filePath): iterable
{
if (file_exists($filePath)) {
$file = fopen($filePath, 'rb');
while(!feof($file)) {
yield fgets($file);
}
fclose($file);
}
else {
throw new RuntimeException("File not found: $filePath");
}
}
}
\ No newline at end of file
Loading