(PHP 5 >= 5.1.0)
SplFileObject::fgetc — Gets character from file
Gets a character from the file.
Questa funzione non contiene parametri.
Returns a string containing a single character read from the file or FALSE
on EOF.
Questa funzione può
restituire il Booleano FALSE
, ma può anche restituire un valore non-Booleano valutato
come FALSE
. Fare riferimento alla sezione Booleans per maggiori
informazioni. Usare l'operatore ===
per controllare il valore restituito da questa
funzione.
Example #1 SplFileObject::fgetc() example
<?php
$file = new SplFileObject('file.txt');
while (false !== ($char = $file->fgetc())) {
echo "$char\n";
}
?>