Friday, October 24, 2025
HomeLanguagesPHP | SplFileObject rewind() Function

PHP | SplFileObject rewind() Function

The SplFileObject::rewind() function is an inbuilt function of Standard PHP Library (SPL) in PHP which is used to Rewind the file to the first line.

 
Syntax: 

void SplFileObject::rewind( $line_num)

Parameters: This function does not accept any parameter.

Return values: This function does not return any value.

Below Programs illustrate the SplFileObject::rewind() function in PHP:
Program-1: 

php




<?php
 
// PHP program to illustrate
// SplFileObject::rewind function
 
$file = new SplFileObject(__FILE__);
 
$file->rewind();
 
echo $file->current();
?>


Output: 

<?php

Program-2: 

php




<?php
  
// PHP program to use array to check
// multiple files
$GFG = array(
    "/home/rajvir/Desktop/neveropen/dummy.php",
    "gfg.txt",
    "mime.php"
    );
  
foreach ($GFG as &$file_name) {
  
    $file = new SplFileObject($file_name);
    $file->rewind();
    echo $file->current();
    }
?>


Output: 

neveropen
gfg
contribute

 

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

RELATED ARTICLES

Most Popular

Dominic
32361 POSTS0 COMMENTS
Milvus
88 POSTS0 COMMENTS
Nango Kala
6728 POSTS0 COMMENTS
Nicole Veronica
11892 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11954 POSTS0 COMMENTS
Shaida Kate Naidoo
6852 POSTS0 COMMENTS
Ted Musemwa
7113 POSTS0 COMMENTS
Thapelo Manthata
6805 POSTS0 COMMENTS
Umr Jansen
6801 POSTS0 COMMENTS