PHP 8.1.28 Released!

SplFileObject::rewind

(PHP 5 >= 5.1.0, PHP 7, PHP 8)

SplFileObject::rewindファイルポインタを先頭に巻き戻す

説明

public SplFileObject::rewind(): void

ファイルポインタを先頭に巻き戻します。

パラメータ

この関数にはパラメータはありません。

戻り値

値を返しません。

エラー / 例外

巻き戻しができない場合 RuntimeException がスローされます。

例1 SplFileObject::rewind() の例

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

// ファイル全体をループする
foreach ($file as $line) { }

// 最初の行に巻き戻す
$file->rewind();

// 最初の行を出力する
echo $file->current();
?>

参考

add a note

User Contributed Notes

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