SplFileObject::rewind

(PHP 5 >= 5.1.0)

SplFileObject::rewindRewind the file to the first line

說明

public void SplFileObject::rewind ( void )

Rewinds the file back to the first line.

參數

此函式沒有參數。

回傳值

無回傳值。

錯誤/例外

Throws a RuntimeException if cannot be rewound.

範例

Example #1 SplFileObject::rewind() example

<?php
$file 
= new SplFileObject("misc.txt");

// Loop over whole file
foreach ($file as $line) { }

// Rewind to first line
$file->rewind();

// Output first line
echo $file->current();
?>

參見

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top