Skip to content
Related Articles
Open in App
Not now

Related Articles

PHP | SplFileObject fgets() Function

Improve Article
Save Article
Like Article
  • Last Updated : 27 Jan, 2023
Improve Article
Save Article
Like Article

The SplFileObject::fgets() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to get line from file. Syntax: 

string SplFileObject::fgets( void )

Parameters: This function does not accept any parameter. Return values: This function returns an string containing the next line from the file return FALSE otherwise. Below Programs illustrate the SplFileObject::fgets() function in PHP. Program 1: 

php




<?php
 
// Creating SplFile Object
$gfg = new SplFileObject("gfg.txt");
while (!$gfg->eof()) {
    echo $gfg->fgets();
}
?>

Output:

GeeksfoGeeks A Computer Science
Portal 
For Geeks.

Program 2: 

php




<?php
 
// Creating SplFile Object
$gfg = new SplFileObject(__FILE__);
while (!$gfg->eof()) {
    echo $gfg->fgets();
}
?>

Output:

<?php

// Creating SplFile Object
$gfg = new SplFileObject(__FILE__);
while (!$gfg->eof()) {
    echo $gfg->fgets();
}
?>

Reference: http://php.net/manual/en/splfileobject.fgets.php

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!