fgets don't skip empty lines if SplFileObject::SKIP_EMPTY is enabled.
Instead use
<?php
while (!$file->eof()) {
$file->next();
echo $file->current();
}
?>
SplFileObject::fgets
(PHP 5 >= 5.1.0)
SplFileObject::fgets — Gets line from file
Descrierea
public string SplFileObject::fgets
( void
)
Gets a line from the file.
Parametri
Această funcție nu are parametri.
Valorile întoarse
Returns a string containing the next line from the file, or FALSE on error.
Erori/Excepții
Throws a RuntimeException if the file cannot be read.
Exemple
Example #1 SplFileObject::fgets() example
This example simply outputs the contents of file.txt line-by-line.
<?php
$file = new SplFileObject("file.txt");
while (!$file->eof()) {
echo $file->fgets();
}
?>
Vedeți de asemenea
- fgets() - Gets line from file pointer
- SplFileObject::fgetss() - Gets line from file and strip HTML tags
- SplFileObject::fgetc() - Gets character from file
- SplFileObject::current() - Retrieve current line of file
