Read a line in file txt in PHP

10k Views Asked by At

I want read a line in file text. EX line 5. Any body can help me????

$fp=fopen("test.txt",r)or exit("khong tim thay file can mo");
while(!feof($fp)){
    echo fgets($fp);
}
fclose($fp);

Thanks for read

3

There are 3 best solutions below

0
On

Just put an incremental counter in your loop, only echo if that counter matches your requred line number, then you can simply break out of the loop

$required = 5;

$line = 1;
$fp=fopen("test.txt",r)or exit("khong tim thay file can mo");
while(!feof($fp)){
    if ($line == $required) {
        echo fgets($fp);
        break;
    }
    ++$line;
}
fclose($fp);
0
On

You can use the fgets() function to read the file line by line:

<?php 
$handle = fopen("test.txt", "r");
if ($handle) {
    while (($line = fgets($handle)) !== false) {
        echo $line.'<br/>';
    }

    fclose($handle);
} else {
    // error opening the file.
} 
?>
0
On
$myFile = "text.txt";
$lines = file($myFile);//file in to an array
echo $lines[1]; //line 2

PHP - Reads entire file into an array