La función SplFileObject::fgets() es una función incorporada de la biblioteca PHP estándar (SPL) en PHP que se usa para obtener una línea del archivo.
Sintaxis:
string SplFileObject::fgets( void )
Parámetros: Esta función no acepta ningún parámetro.
Valores devueltos: esta función devuelve una string que contiene la siguiente línea del archivo, de lo contrario, devuelve FALSO.
Los programas a continuación ilustran la función SplFileObject::fgets() en PHP.
Programa 1:
<?php // Creating SplFile Object $gfg = new SplFileObject("gfg.txt"); while (!$gfg->eof()) { echo $gfg->fgets(); } ?>
Producción:
GeeksfoGeeks A Computer Science Portal For Geeks.
Programa 2:
<?php // Creating SplFile Object $gfg = new SplFileObject(__FILE__); while (!$gfg->eof()) { echo $gfg->fgets(); } ?>
Producción:
<?php // Creating SplFile Object $gfg = new SplFileObject(__FILE__); while (!$gfg->eof()) { echo $gfg->fgets(); } ?>
Referencia: http://php.net/manual/en/splfileobject.fgets.php