txt dosyasından satır veri çekme php
1
●136
- 29-01-2022, 18:27:58
$handle = fopen("inputfile.txt", "r"); if ($handle) { while (($line = fgets($handle)) !== false) { // process the line read. } fclose($handle); } else { // error opening the file. }https://stackoverflow.com/questions/13246597/how-to-read-a-large-file-line-by-line